diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 03:46:08 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 03:46:08 +0000 |
commit | 5c30b5e024416c5a710501b26a59632296460423 (patch) | |
tree | 885fedadf0dccea79ffda059121a23b15fd2e505 /content/renderer/dom_storage | |
parent | 4a8cf3e2dcd1c95a3ec7ba34f7a0b653c154a1ce (diff) | |
download | chromium_src-5c30b5e024416c5a710501b26a59632296460423.zip chromium_src-5c30b5e024416c5a710501b26a59632296460423.tar.gz chromium_src-5c30b5e024416c5a710501b26a59632296460423.tar.bz2 |
Update refernces to Blink's Platform API (content)
These headers have moved from Source/Platform/chromium/public to
public/platform. This CL updates content's references to the old location to
point to the new location. After this CL lands, I'll remove the forwarding
headers that are letting these references still work.
TBR=jamesr@chromium.org
BUG=239545
Review URL: https://chromiumcodereview.appspot.com/15822010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203047 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/dom_storage')
5 files changed, 6 insertions, 6 deletions
diff --git a/content/renderer/dom_storage/dom_storage_dispatcher.cc b/content/renderer/dom_storage/dom_storage_dispatcher.cc index 5963694..e746440 100644 --- a/content/renderer/dom_storage/dom_storage_dispatcher.cc +++ b/content/renderer/dom_storage/dom_storage_dispatcher.cc @@ -13,7 +13,7 @@ #include "content/renderer/dom_storage/webstoragearea_impl.h" #include "content/renderer/dom_storage/webstoragenamespace_impl.h" #include "content/renderer/render_thread_impl.h" -#include "third_party/WebKit/Source/Platform/chromium/public/Platform.h" +#include "third_party/WebKit/public/platform/Platform.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageEventDispatcher.h" #include "webkit/dom_storage/dom_storage_cached_area.h" diff --git a/content/renderer/dom_storage/webstoragearea_impl.cc b/content/renderer/dom_storage/webstoragearea_impl.cc index 72d5fe2..543346c 100644 --- a/content/renderer/dom_storage/webstoragearea_impl.cc +++ b/content/renderer/dom_storage/webstoragearea_impl.cc @@ -11,7 +11,7 @@ #include "content/common/dom_storage_messages.h" #include "content/renderer/dom_storage/dom_storage_dispatcher.h" #include "content/renderer/render_thread_impl.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" +#include "third_party/WebKit/public/platform/WebURL.h" #include "webkit/dom_storage/dom_storage_cached_area.h" using dom_storage::DomStorageCachedArea; diff --git a/content/renderer/dom_storage/webstoragearea_impl.h b/content/renderer/dom_storage/webstoragearea_impl.h index d62015a..a79f45f 100644 --- a/content/renderer/dom_storage/webstoragearea_impl.h +++ b/content/renderer/dom_storage/webstoragearea_impl.h @@ -7,8 +7,8 @@ #include "base/basictypes.h" #include "base/memory/ref_counted.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebStorageArea.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" +#include "third_party/WebKit/public/platform/WebStorageArea.h" +#include "third_party/WebKit/public/platform/WebString.h" class GURL; diff --git a/content/renderer/dom_storage/webstoragenamespace_impl.cc b/content/renderer/dom_storage/webstoragenamespace_impl.cc index a8613f7..356f963 100644 --- a/content/renderer/dom_storage/webstoragenamespace_impl.cc +++ b/content/renderer/dom_storage/webstoragenamespace_impl.cc @@ -7,7 +7,7 @@ #include "base/logging.h" #include "content/renderer/dom_storage/webstoragearea_impl.h" #include "googleurl/src/gurl.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" +#include "third_party/WebKit/public/platform/WebString.h" #include "webkit/dom_storage/dom_storage_types.h" using WebKit::WebStorageArea; diff --git a/content/renderer/dom_storage/webstoragenamespace_impl.h b/content/renderer/dom_storage/webstoragenamespace_impl.h index 4f14500..52c1b35 100644 --- a/content/renderer/dom_storage/webstoragenamespace_impl.h +++ b/content/renderer/dom_storage/webstoragenamespace_impl.h @@ -6,7 +6,7 @@ #define CONTENT_RENDERER_DOM_STORAGE_WEBSTORAGENAMESPACE_IMPL_H_ #include "base/basictypes.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebStorageNamespace.h" +#include "third_party/WebKit/public/platform/WebStorageNamespace.h" namespace content { |