Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (94478 => 94479)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-09-03 05:23:35 UTC (rev 94478)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-09-03 05:45:08 UTC (rev 94479)
@@ -1,3 +1,17 @@
+2011-09-02 Adam Barth <[email protected]>
+
+ Remove WebKitClient.h
+ https://bugs.webkit.org/show_bug.cgi?id=67539
+
+ Reviewed by Sam Weinig.
+
+ This API no longer has any callers.
+
+ * WebKit.gyp:
+ * public/WebKit.h:
+ * public/WebKitClient.h: Removed.
+ * src/WebKit.cpp:
+
2011-09-02 Bill Budge <[email protected]>
Add a 'didDownloadData' method to ResourceHandleInternal and pass these
Modified: trunk/Source/WebKit/chromium/WebKit.gyp (94478 => 94479)
--- trunk/Source/WebKit/chromium/WebKit.gyp 2011-09-03 05:23:35 UTC (rev 94478)
+++ trunk/Source/WebKit/chromium/WebKit.gyp 2011-09-03 05:45:08 UTC (rev 94479)
@@ -207,7 +207,6 @@
'public/WebInputElement.h',
'public/WebInputEvent.h',
'public/WebKit.h',
- 'public/WebKitClient.h',
'public/WebKitPlatformSupport.h',
'public/WebLabelElement.h',
'public/WebLocalizedString.h',
Modified: trunk/Source/WebKit/chromium/public/WebKit.h (94478 => 94479)
--- trunk/Source/WebKit/chromium/public/WebKit.h 2011-09-03 05:23:35 UTC (rev 94478)
+++ trunk/Source/WebKit/chromium/public/WebKit.h 2011-09-03 05:45:08 UTC (rev 94479)
@@ -51,10 +51,6 @@
// Returns the WebKitPlatformSupport instance passed to initialize.
WEBKIT_EXPORT WebKitPlatformSupport* webKitPlatformSupport();
-#ifndef WEBKIT_RENAME_WEBKIT_CLIENT
-WEBKIT_EXPORT WebKitPlatformSupport* webKitClient();
-#endif
-
// Alters the rendering of content to conform to a fixed set of rules.
WEBKIT_EXPORT void setLayoutTestMode(bool);
WEBKIT_EXPORT bool layoutTestMode();
Deleted: trunk/Source/WebKit/chromium/public/WebKitClient.h (94478 => 94479)
--- trunk/Source/WebKit/chromium/public/WebKitClient.h 2011-09-03 05:23:35 UTC (rev 94478)
+++ trunk/Source/WebKit/chromium/public/WebKitClient.h 2011-09-03 05:45:08 UTC (rev 94479)
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2011 Google 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:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * 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.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
- * OWNER OR 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.
- */
-
-#ifndef WebKitClient_h
-#define WebKitClient_h
-
-// FIXME: Remove this file once we're done renaming WebKitClient to WebKitPlatformSupport.
-#ifndef WEBKIT_RENAME_WEBKIT_CLIENT
-
-#include "WebKitPlatformSupport.h"
-
-namespace WebKit {
-typedef WebKitPlatformSupport WebKitClient;
-}
-
-#endif
-
-#endif
Modified: trunk/Source/WebKit/chromium/src/WebKit.cpp (94478 => 94479)
--- trunk/Source/WebKit/chromium/src/WebKit.cpp 2011-09-03 05:23:35 UTC (rev 94478)
+++ trunk/Source/WebKit/chromium/src/WebKit.cpp 2011-09-03 05:45:08 UTC (rev 94479)
@@ -103,13 +103,6 @@
return s_webKitPlatformSupport;
}
-#ifndef WEBKIT_RENAME_WEBKIT_CLIENT
-WebKitPlatformSupport* webKitClient()
-{
- return webKitPlatformSupport();
-}
-#endif
-
void setLayoutTestMode(bool value)
{
s_layoutTestMode = value;