Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (140585 => 140586)
--- trunk/Source/WebKit/chromium/ChangeLog 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/ChangeLog 2013-01-23 21:56:20 UTC (rev 140586)
@@ -1,5 +1,34 @@
2013-01-23 Mark Pilgrim <pilg...@chromium.org>
+ [Chromium] Remove WebArrayBufferView and WebSerializedScriptValue from chromium/public/platform/
+ https://bugs.webkit.org/show_bug.cgi?id=107720
+
+ Reviewed by Darin Fisher.
+
+ These headers have been moved to chromium/public/ and all
+ references downstream were changed in
+ https://codereview.chromium.org/11946050/.
+ No DEPS roll necessary because it's already above 177695.
+
+ * WebKit.gyp:
+ * public/platform/WebArrayBufferView.h: Removed.
+ * public/platform/WebSerializedScriptValue.h: Removed.
+ * src/DeliveredIntentClientImpl.cpp:
+ * src/IDBCallbacksProxy.cpp:
+ * src/IDBCursorBackendProxy.cpp:
+ * src/WebArrayBufferView.cpp:
+ * src/WebBindings.cpp:
+ * src/WebDOMCustomEvent.cpp:
+ * src/WebDOMMessageEvent.cpp:
+ * src/WebFrameImpl.cpp:
+ * src/WebHistoryItem.cpp:
+ * src/WebIDBCallbacksImpl.cpp:
+ * src/WebIntent.cpp:
+ * src/WebIntentRequest.cpp:
+ * src/WebSerializedScriptValue.cpp:
+
+2013-01-23 Mark Pilgrim <pilg...@chromium.org>
+
[Chromium] Fix some #includes to headers in chromium/public/platform/ that have been moved to the new Platform directory
https://bugs.webkit.org/show_bug.cgi?id=107722
Modified: trunk/Source/WebKit/chromium/WebKit.gyp (140585 => 140586)
--- trunk/Source/WebKit/chromium/WebKit.gyp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/WebKit.gyp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -298,7 +298,6 @@
'public/mac/WebSandboxSupport.h',
'public/mac/WebScreenInfoFactory.h',
'public/mac/WebSubstringUtil.h',
- 'public/platform/WebArrayBufferView.h',
'public/platform/WebAudioBus.h',
'public/platform/WebAudioDevice.h',
'public/platform/WebCanvas.h',
@@ -321,7 +320,6 @@
'public/platform/WebPrivatePtr.h',
'public/platform/WebRect.h',
'public/platform/WebReferrerPolicy.h',
- 'public/platform/WebSerializedScriptValue.h',
'public/platform/WebSize.h',
'public/platform/WebSocketStreamError.h',
'public/platform/WebSocketStreamHandle.h',
Deleted: trunk/Source/WebKit/chromium/public/platform/WebArrayBufferView.h (140585 => 140586)
--- trunk/Source/WebKit/chromium/public/platform/WebArrayBufferView.h 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/public/platform/WebArrayBufferView.h 2013-01-23 21:56:20 UTC (rev 140586)
@@ -1,29 +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:
- *
- * 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.
- * 3. Neither the name of Apple Computer, Inc. ("Apple") 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 APPLE 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 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 "../WebArrayBufferView.h"
Deleted: trunk/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h (140585 => 140586)
--- trunk/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h 2013-01-23 21:56:20 UTC (rev 140586)
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2010 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.
- */
-
-#include "../WebSerializedScriptValue.h"
Modified: trunk/Source/WebKit/chromium/src/DeliveredIntentClientImpl.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/DeliveredIntentClientImpl.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/DeliveredIntentClientImpl.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -32,7 +32,7 @@
#include "DeliveredIntentClientImpl.h"
#include "WebDeliveredIntentClient.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
namespace WebKit {
Modified: trunk/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/IDBCallbacksProxy.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -46,7 +46,7 @@
#include "WebIDBDatabaseImpl.h"
#include "WebIDBKey.h"
#include "WebIDBTransactionImpl.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
using namespace WebCore;
Modified: trunk/Source/WebKit/chromium/src/IDBCursorBackendProxy.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/IDBCursorBackendProxy.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/IDBCursorBackendProxy.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -34,7 +34,7 @@
#include "SerializedScriptValue.h"
#include "WebIDBCallbacksImpl.h"
#include "WebIDBKey.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
using namespace WebCore;
Modified: trunk/Source/WebKit/chromium/src/WebArrayBufferView.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebArrayBufferView.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebArrayBufferView.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -27,7 +27,7 @@
*/
#include "config.h"
-#include "platform/WebArrayBufferView.h"
+#include "WebArrayBufferView.h"
#include "V8ArrayBufferView.h"
#include <wtf/ArrayBufferView.h>
Modified: trunk/Source/WebKit/chromium/src/WebBindings.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebBindings.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebBindings.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -52,7 +52,7 @@
#include "bridge/c/c_utility.h"
#endif
#include "WebArrayBuffer.h"
-#include "platform/WebArrayBufferView.h"
+#include "WebArrayBufferView.h"
#include "WebElement.h"
#include "WebRange.h"
Modified: trunk/Source/WebKit/chromium/src/WebDOMCustomEvent.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebDOMCustomEvent.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebDOMCustomEvent.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -33,7 +33,7 @@
#include "CustomEvent.h"
#include "SerializedScriptValue.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
#include <public/WebString.h>
using namespace WebCore;
Modified: trunk/Source/WebKit/chromium/src/WebDOMMessageEvent.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebDOMMessageEvent.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebDOMMessageEvent.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -39,7 +39,7 @@
#include "SerializedScriptValue.h"
#include "WebFrame.h"
#include "WebFrameImpl.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
#include <public/WebString.h>
using namespace WebCore;
Modified: trunk/Source/WebKit/chromium/src/WebFrameImpl.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebFrameImpl.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebFrameImpl.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -178,12 +178,12 @@
#include "WebRange.h"
#include "WebScriptSource.h"
#include "WebSecurityOrigin.h"
+#include "WebSerializedScriptValue.h"
#include "WebViewImpl.h"
#include "XPathResult.h"
#include "htmlediting.h"
#include "markup.h"
#include "painting/GraphicsContextBuilder.h"
-#include "platform/WebSerializedScriptValue.h"
#include <algorithm>
#include <public/Platform.h>
#include <public/WebFileSystem.h>
Modified: trunk/Source/WebKit/chromium/src/WebHistoryItem.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebHistoryItem.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebHistoryItem.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -36,7 +36,7 @@
#include "HistoryItem.h"
#include "KURL.h"
#include "SerializedScriptValue.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
#include <public/WebHTTPBody.h>
#include <public/WebPoint.h>
#include <public/WebString.h>
Modified: trunk/Source/WebKit/chromium/src/WebIDBCallbacksImpl.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebIDBCallbacksImpl.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebIDBCallbacksImpl.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -41,7 +41,7 @@
#include "WebIDBDatabaseError.h"
#include "WebIDBKey.h"
#include "WebIDBTransaction.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
using namespace WebCore;
Modified: trunk/Source/WebKit/chromium/src/WebIntent.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebIntent.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebIntent.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -35,7 +35,7 @@
#include "MessagePort.h"
#include "PlatformMessagePortChannel.h"
#include "SerializedScriptValue.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
#include <wtf/HashMap.h>
namespace WebKit {
Modified: trunk/Source/WebKit/chromium/src/WebIntentRequest.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebIntentRequest.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebIntentRequest.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -35,7 +35,7 @@
#include "IntentRequest.h"
#include "SerializedScriptValue.h"
#include "WebIntent.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
namespace WebKit {
Modified: trunk/Source/WebKit/chromium/src/WebSerializedScriptValue.cpp (140585 => 140586)
--- trunk/Source/WebKit/chromium/src/WebSerializedScriptValue.cpp 2013-01-23 21:55:54 UTC (rev 140585)
+++ trunk/Source/WebKit/chromium/src/WebSerializedScriptValue.cpp 2013-01-23 21:56:20 UTC (rev 140586)
@@ -29,7 +29,7 @@
*/
#include "config.h"
-#include "platform/WebSerializedScriptValue.h"
+#include "WebSerializedScriptValue.h"
#include "SerializedScriptValue.h"
#include <public/WebString.h>