diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 07:56:50 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-30 07:56:50 +0000 |
commit | e566d2b0d2a2eec13572309409712135a26d80fd (patch) | |
tree | 9a96384c16439037ab05b92a56c44287df8969ea /android_webview/renderer | |
parent | a566a11d2894164105204af1a3352adc3e37451b (diff) | |
download | chromium_src-e566d2b0d2a2eec13572309409712135a26d80fd.zip chromium_src-e566d2b0d2a2eec13572309409712135a26d80fd.tar.gz chromium_src-e566d2b0d2a2eec13572309409712135a26d80fd.tar.bz2 |
Update references to Blink's Platform API headers (remaining)
These headers have moved from Source/Platform/chromium/public to
public/platform. This CL updates the remaining 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=darin@chromium.org
BUG=239545
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/15648012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203106 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/renderer')
-rw-r--r-- | android_webview/renderer/DEPS | 2 | ||||
-rw-r--r-- | android_webview/renderer/aw_content_renderer_client.cc | 8 | ||||
-rw-r--r-- | android_webview/renderer/aw_render_view_ext.cc | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/android_webview/renderer/DEPS b/android_webview/renderer/DEPS index 2263fab..b2554bc 100644 --- a/android_webview/renderer/DEPS +++ b/android_webview/renderer/DEPS @@ -8,7 +8,7 @@ include_rules = [ "+content/public/renderer", "+third_party/WebKit/Source/WebKit/chromium/public", - "+third_party/WebKit/Source/Platform/chromium/public", + "+third_party/WebKit/public/platform", "+ui/gl/gpu_memory_buffer.h", ] diff --git a/android_webview/renderer/aw_content_renderer_client.cc b/android_webview/renderer/aw_content_renderer_client.cc index a0ac2fd..02b1c54 100644 --- a/android_webview/renderer/aw_content_renderer_client.cc +++ b/android_webview/renderer/aw_content_renderer_client.cc @@ -13,10 +13,10 @@ #include "components/visitedlink/renderer/visitedlink_slave.h" #include "content/public/renderer/render_thread.h" #include "googleurl/src/gurl.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebURLError.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" +#include "third_party/WebKit/public/platform/WebString.h" +#include "third_party/WebKit/public/platform/WebURL.h" +#include "third_party/WebKit/public/platform/WebURLError.h" +#include "third_party/WebKit/public/platform/WebURLRequest.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" namespace android_webview { diff --git a/android_webview/renderer/aw_render_view_ext.cc b/android_webview/renderer/aw_render_view_ext.cc index 27a7242..8452b45 100644 --- a/android_webview/renderer/aw_render_view_ext.cc +++ b/android_webview/renderer/aw_render_view_ext.cc @@ -16,9 +16,9 @@ #include "content/public/renderer/document_state.h" #include "content/public/renderer/render_view.h" #include "skia/ext/refptr.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" +#include "third_party/WebKit/public/platform/WebSize.h" +#include "third_party/WebKit/public/platform/WebURL.h" +#include "third_party/WebKit/public/platform/WebVector.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" |