diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-17 06:44:37 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-17 06:44:37 +0000 |
commit | 8bd0fe6f88b7f6f1cc8c7b7c4c2474669d8d6d60 (patch) | |
tree | 605e02a07a66e61c4fb1f645b2f87da200d56fd8 /chrome/worker | |
parent | e65e8bac10ca2828444a5cffb8890fe065bc06fa (diff) | |
download | chromium_src-8bd0fe6f88b7f6f1cc8c7b7c4c2474669d8d6d60.zip chromium_src-8bd0fe6f88b7f6f1cc8c7b7c4c2474669d8d6d60.tar.gz chromium_src-8bd0fe6f88b7f6f1cc8c7b7c4c2474669d8d6d60.tar.bz2 |
Roll WebKit DEPS past WebKit move. Update gyp files and include paths to reflect the move. Consolidate how we DEPS in WebKit source files. Cross fingers.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71585 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r-- | chrome/worker/nativewebworker_impl.cc | 8 | ||||
-rw-r--r-- | chrome/worker/nativewebworker_impl.h | 4 | ||||
-rw-r--r-- | chrome/worker/websharedworker_stub.cc | 6 | ||||
-rw-r--r-- | chrome/worker/webworker_stub.cc | 6 | ||||
-rw-r--r-- | chrome/worker/webworkerclient_proxy.cc | 12 | ||||
-rw-r--r-- | chrome/worker/webworkerclient_proxy.h | 4 | ||||
-rw-r--r-- | chrome/worker/worker_thread.cc | 8 | ||||
-rw-r--r-- | chrome/worker/worker_webkitclient_impl.cc | 6 | ||||
-rw-r--r-- | chrome/worker/worker_webkitclient_impl.h | 2 |
9 files changed, 28 insertions, 28 deletions
diff --git a/chrome/worker/nativewebworker_impl.cc b/chrome/worker/nativewebworker_impl.cc index d5ac33c..96b6520 100644 --- a/chrome/worker/nativewebworker_impl.cc +++ b/chrome/worker/nativewebworker_impl.cc @@ -11,10 +11,10 @@ #include "base/logging.h" #include "base/message_loop.h" #include "base/threading/thread.h" -#include "third_party/WebKit/WebKit/chromium/public/WebString.h" -#include "third_party/WebKit/WebKit/chromium/public/WebURL.h" -#include "third_party/WebKit/WebKit/chromium/public/WebKitClient.h" -#include "third_party/WebKit/WebKit/chromium/public/WebWorkerClient.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebKitClient.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebWorkerClient.h" // TODO(sehr): This will be changed to point to the real NaCl headers once // the builds are integrated. diff --git a/chrome/worker/nativewebworker_impl.h b/chrome/worker/nativewebworker_impl.h index 528c31d1..4be47a9 100644 --- a/chrome/worker/nativewebworker_impl.h +++ b/chrome/worker/nativewebworker_impl.h @@ -7,8 +7,8 @@ #pragma once #include "base/basictypes.h" -#include "third_party/WebKit/WebKit/chromium/public/WebWorker.h" -#include "third_party/WebKit/WebKit/chromium/public/WebWorkerClient.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebWorker.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebWorkerClient.h" // Forward declaration for the listener thread pointer. diff --git a/chrome/worker/websharedworker_stub.cc b/chrome/worker/websharedworker_stub.cc index 0c03ba0..2e4e1d7 100644 --- a/chrome/worker/websharedworker_stub.cc +++ b/chrome/worker/websharedworker_stub.cc @@ -8,9 +8,9 @@ #include "chrome/common/file_system/file_system_dispatcher.h" #include "chrome/common/webmessageportchannel_impl.h" #include "chrome/common/worker_messages.h" -#include "third_party/WebKit/WebKit/chromium/public/WebSharedWorker.h" -#include "third_party/WebKit/WebKit/chromium/public/WebString.h" -#include "third_party/WebKit/WebKit/chromium/public/WebURL.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebSharedWorker.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" WebSharedWorkerStub::WebSharedWorkerStub( const string16& name, int route_id, diff --git a/chrome/worker/webworker_stub.cc b/chrome/worker/webworker_stub.cc index a3d3ba4..24ab04e 100644 --- a/chrome/worker/webworker_stub.cc +++ b/chrome/worker/webworker_stub.cc @@ -11,9 +11,9 @@ #include "chrome/common/webmessageportchannel_impl.h" #include "chrome/common/worker_messages.h" #include "chrome/worker/nativewebworker_impl.h" -#include "third_party/WebKit/WebKit/chromium/public/WebString.h" -#include "third_party/WebKit/WebKit/chromium/public/WebURL.h" -#include "third_party/WebKit/WebKit/chromium/public/WebWorker.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebWorker.h" using WebKit::WebWorker; diff --git a/chrome/worker/webworkerclient_proxy.cc b/chrome/worker/webworkerclient_proxy.cc index adb9b9b8..c4c3e79 100644 --- a/chrome/worker/webworkerclient_proxy.cc +++ b/chrome/worker/webworkerclient_proxy.cc @@ -16,12 +16,12 @@ #include "chrome/worker/worker_thread.h" #include "chrome/worker/worker_webapplicationcachehost_impl.h" #include "ipc/ipc_logging.h" -#include "third_party/WebKit/WebKit/chromium/public/WebFileSystemCallbacks.h" -#include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" -#include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h" -#include "third_party/WebKit/WebKit/chromium/public/WebString.h" -#include "third_party/WebKit/WebKit/chromium/public/WebURL.h" -#include "third_party/WebKit/WebKit/chromium/public/WebWorker.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallbacks.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebWorker.h" using WebKit::WebApplicationCacheHost; using WebKit::WebFrame; diff --git a/chrome/worker/webworkerclient_proxy.h b/chrome/worker/webworkerclient_proxy.h index 555742e..0a126fa 100644 --- a/chrome/worker/webworkerclient_proxy.h +++ b/chrome/worker/webworkerclient_proxy.h @@ -9,8 +9,8 @@ #include "base/basictypes.h" #include "base/task.h" #include "ipc/ipc_channel.h" -#include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h" -#include "third_party/WebKit/WebKit/chromium/public/WebWorkerClient.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebWorkerClient.h" namespace WebKit { class WebApplicationCacheHost; diff --git a/chrome/worker/worker_thread.cc b/chrome/worker/worker_thread.cc index ce0252c2..90bf9b6 100644 --- a/chrome/worker/worker_thread.cc +++ b/chrome/worker/worker_thread.cc @@ -16,10 +16,10 @@ #include "chrome/worker/websharedworker_stub.h" #include "chrome/worker/worker_webkitclient_impl.h" #include "ipc/ipc_sync_channel.h" -#include "third_party/WebKit/WebKit/chromium/public/WebBlobRegistry.h" -#include "third_party/WebKit/WebKit/chromium/public/WebDatabase.h" -#include "third_party/WebKit/WebKit/chromium/public/WebKit.h" -#include "third_party/WebKit/WebKit/chromium/public/WebRuntimeFeatures.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebBlobRegistry.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" using WebKit::WebRuntimeFeatures; diff --git a/chrome/worker/worker_webkitclient_impl.cc b/chrome/worker/worker_webkitclient_impl.cc index 3dc9cc2..836e84d 100644 --- a/chrome/worker/worker_webkitclient_impl.cc +++ b/chrome/worker/worker_webkitclient_impl.cc @@ -16,9 +16,9 @@ #include "chrome/common/webmessageportchannel_impl.h" #include "chrome/worker/worker_thread.h" #include "ipc/ipc_sync_message_filter.h" -#include "third_party/WebKit/WebKit/chromium/public/WebBlobRegistry.h" -#include "third_party/WebKit/WebKit/chromium/public/WebString.h" -#include "third_party/WebKit/WebKit/chromium/public/WebURL.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebBlobRegistry.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" #include "webkit/glue/webfileutilities_impl.h" #include "webkit/glue/webkit_glue.h" diff --git a/chrome/worker/worker_webkitclient_impl.h b/chrome/worker/worker_webkitclient_impl.h index df98e7d..6724737 100644 --- a/chrome/worker/worker_webkitclient_impl.h +++ b/chrome/worker/worker_webkitclient_impl.h @@ -7,7 +7,7 @@ #pragma once #include "base/scoped_ptr.h" -#include "third_party/WebKit/WebKit/chromium/public/WebMimeRegistry.h" +#include "third_party/WebKit/Source/WebKit/chromium/public/WebMimeRegistry.h" #include "webkit/glue/webkitclient_impl.h" class WebFileSystemImpl; |