diff options
Diffstat (limited to 'Source/WebKit2/Shared/win')
9 files changed, 74 insertions, 0 deletions
diff --git a/Source/WebKit2/Shared/win/CommandLineWin.cpp b/Source/WebKit2/Shared/win/CommandLineWin.cpp index 7d6c9e3..2e2798f 100644 --- a/Source/WebKit2/Shared/win/CommandLineWin.cpp +++ b/Source/WebKit2/Shared/win/CommandLineWin.cpp @@ -23,6 +23,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "CommandLine.h" namespace WebKit { diff --git a/Source/WebKit2/Shared/win/LayerTreeContextWin.cpp b/Source/WebKit2/Shared/win/LayerTreeContextWin.cpp new file mode 100644 index 0000000..f1bf1b4 --- /dev/null +++ b/Source/WebKit2/Shared/win/LayerTreeContextWin.cpp @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2011 Apple Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + * THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include "config.h" +#include "LayerTreeContext.h" + +#include "NotImplemented.h" + +namespace WebKit { + +LayerTreeContext::LayerTreeContext() +{ + notImplemented(); +} + +LayerTreeContext::~LayerTreeContext() +{ + notImplemented(); +} + +void LayerTreeContext::encode(CoreIPC::ArgumentEncoder*) const +{ + notImplemented(); +} + +bool LayerTreeContext::decode(CoreIPC::ArgumentDecoder*, LayerTreeContext&) +{ + notImplemented(); + return true; +} + +bool LayerTreeContext::isEmpty() const +{ + notImplemented(); + return true; +} + +bool operator==(const LayerTreeContext&, const LayerTreeContext&) +{ + notImplemented(); + return true; +} + +} // namespace WebKit diff --git a/Source/WebKit2/Shared/win/NativeWebKeyboardEventWin.cpp b/Source/WebKit2/Shared/win/NativeWebKeyboardEventWin.cpp index d947b87..37aaf5d 100644 --- a/Source/WebKit2/Shared/win/NativeWebKeyboardEventWin.cpp +++ b/Source/WebKit2/Shared/win/NativeWebKeyboardEventWin.cpp @@ -23,6 +23,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "NativeWebKeyboardEvent.h" #include "WebEventFactory.h" diff --git a/Source/WebKit2/Shared/win/PlatformCertificateInfo.cpp b/Source/WebKit2/Shared/win/PlatformCertificateInfo.cpp index b88a7ef..ade2291 100644 --- a/Source/WebKit2/Shared/win/PlatformCertificateInfo.cpp +++ b/Source/WebKit2/Shared/win/PlatformCertificateInfo.cpp @@ -23,6 +23,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "PlatformCertificateInfo.h" #include "ArgumentDecoder.h" diff --git a/Source/WebKit2/Shared/win/UpdateChunk.cpp b/Source/WebKit2/Shared/win/UpdateChunk.cpp index 2aabead..236e279 100644 --- a/Source/WebKit2/Shared/win/UpdateChunk.cpp +++ b/Source/WebKit2/Shared/win/UpdateChunk.cpp @@ -23,6 +23,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "UpdateChunk.h" #include "ArgumentDecoder.h" diff --git a/Source/WebKit2/Shared/win/WebCoreArgumentCodersWin.cpp b/Source/WebKit2/Shared/win/WebCoreArgumentCodersWin.cpp index 95d7de2..684378a 100644 --- a/Source/WebKit2/Shared/win/WebCoreArgumentCodersWin.cpp +++ b/Source/WebKit2/Shared/win/WebCoreArgumentCodersWin.cpp @@ -23,6 +23,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "WebCoreArgumentCoders.h" #if USE(CFNETWORK) diff --git a/Source/WebKit2/Shared/win/WebEventFactory.cpp b/Source/WebKit2/Shared/win/WebEventFactory.cpp index a4081fc..44a67fc 100644 --- a/Source/WebKit2/Shared/win/WebEventFactory.cpp +++ b/Source/WebKit2/Shared/win/WebEventFactory.cpp @@ -24,6 +24,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "WebEventFactory.h" #include <windowsx.h> diff --git a/Source/WebKit2/Shared/win/WebURLRequestWin.cpp b/Source/WebKit2/Shared/win/WebURLRequestWin.cpp index e64d451..4bbc10c 100644 --- a/Source/WebKit2/Shared/win/WebURLRequestWin.cpp +++ b/Source/WebKit2/Shared/win/WebURLRequestWin.cpp @@ -23,6 +23,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "WebURLRequest.h" namespace WebKit { diff --git a/Source/WebKit2/Shared/win/WebURLResponseWin.cpp b/Source/WebKit2/Shared/win/WebURLResponseWin.cpp index 3b3f24c..e41c0f3 100644 --- a/Source/WebKit2/Shared/win/WebURLResponseWin.cpp +++ b/Source/WebKit2/Shared/win/WebURLResponseWin.cpp @@ -23,6 +23,7 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include "config.h" #include "WebURLResponse.h" namespace WebKit { |