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 /components | |
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 'components')
-rw-r--r-- | components/autofill/DEPS | 2 | ||||
-rw-r--r-- | components/autofill/browser/risk/fingerprint.cc | 4 | ||||
-rw-r--r-- | components/autofill/renderer/autofill_agent.cc | 4 | ||||
-rw-r--r-- | components/autofill/renderer/form_autofill_util.cc | 4 | ||||
-rw-r--r-- | components/autofill/renderer/form_cache.cc | 4 | ||||
-rw-r--r-- | components/autofill/renderer/page_click_tracker.cc | 2 | ||||
-rw-r--r-- | components/autofill/renderer/password_autofill_agent.cc | 2 | ||||
-rw-r--r-- | components/autofill/renderer/password_generation_manager.cc | 6 | ||||
-rw-r--r-- | components/sessions/DEPS | 2 | ||||
-rw-r--r-- | components/sessions/serialized_navigation_entry.cc | 2 | ||||
-rw-r--r-- | components/sessions/serialized_navigation_entry_test_helper.cc | 2 | ||||
-rw-r--r-- | components/sessions/serialized_navigation_entry_unittest.cc | 2 | ||||
-rw-r--r-- | components/visitedlink/renderer/DEPS | 3 |
13 files changed, 19 insertions, 20 deletions
diff --git a/components/autofill/DEPS b/components/autofill/DEPS index fb54544..df74b4f 100644 --- a/components/autofill/DEPS +++ b/components/autofill/DEPS @@ -4,7 +4,7 @@ include_rules = [ "+jni", "+net", # Allow inclusion of WebKit API files. - "+third_party/WebKit/Source/Platform/chromium", + "+third_party/WebKit/public/platform", "+third_party/WebKit/Source/WebKit/chromium", "+ui", ] diff --git a/components/autofill/browser/risk/fingerprint.cc b/components/autofill/browser/risk/fingerprint.cc index d49c887..cb6538c 100644 --- a/components/autofill/browser/risk/fingerprint.cc +++ b/components/autofill/browser/risk/fingerprint.cc @@ -27,8 +27,8 @@ #include "content/public/common/content_client.h" #include "content/public/common/geoposition.h" #include "gpu/config/gpu_info.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebScreenInfo.h" +#include "third_party/WebKit/public/platform/WebRect.h" +#include "third_party/WebKit/public/platform/WebScreenInfo.h" #include "ui/gfx/rect.h" #include "ui/gfx/screen.h" #include "webkit/plugins/webplugininfo.h" diff --git a/components/autofill/renderer/autofill_agent.cc b/components/autofill/renderer/autofill_agent.cc index d0b776e..c58b3a0 100644 --- a/components/autofill/renderer/autofill_agent.cc +++ b/components/autofill/renderer/autofill_agent.cc @@ -26,8 +26,8 @@ #include "content/public/common/ssl_status.h" #include "content/public/renderer/render_view.h" #include "grit/component_resources.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" +#include "third_party/WebKit/public/platform/WebRect.h" +#include "third_party/WebKit/public/platform/WebURLRequest.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/WebFormControlElement.h" diff --git a/components/autofill/renderer/form_autofill_util.cc b/components/autofill/renderer/form_autofill_util.cc index 7102b44..04fc849 100644 --- a/components/autofill/renderer/form_autofill_util.cc +++ b/components/autofill/renderer/form_autofill_util.cc @@ -16,8 +16,8 @@ #include "components/autofill/common/form_data.h" #include "components/autofill/common/form_field_data.h" #include "components/autofill/common/web_element_descriptor.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" +#include "third_party/WebKit/public/platform/WebString.h" +#include "third_party/WebKit/public/platform/WebVector.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" diff --git a/components/autofill/renderer/form_cache.cc b/components/autofill/renderer/form_cache.cc index 988aa3d..1c00d67 100644 --- a/components/autofill/renderer/form_cache.cc +++ b/components/autofill/renderer/form_cache.cc @@ -13,8 +13,8 @@ #include "components/autofill/common/form_field_data_predictions.h" #include "components/autofill/renderer/form_autofill_util.h" #include "grit/component_resources.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" +#include "third_party/WebKit/public/platform/WebString.h" +#include "third_party/WebKit/public/platform/WebVector.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" diff --git a/components/autofill/renderer/page_click_tracker.cc b/components/autofill/renderer/page_click_tracker.cc index 54c8f2f..f1aae33 100644 --- a/components/autofill/renderer/page_click_tracker.cc +++ b/components/autofill/renderer/page_click_tracker.cc @@ -7,7 +7,7 @@ #include "components/autofill/renderer/form_autofill_util.h" #include "components/autofill/renderer/page_click_listener.h" #include "content/public/renderer/render_view.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" +#include "third_party/WebKit/public/platform/WebString.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMMouseEvent.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" diff --git a/components/autofill/renderer/password_autofill_agent.cc b/components/autofill/renderer/password_autofill_agent.cc index 704e54fa..c185f25 100644 --- a/components/autofill/renderer/password_autofill_agent.cc +++ b/components/autofill/renderer/password_autofill_agent.cc @@ -14,7 +14,7 @@ #include "content/public/common/password_form.h" #include "content/public/renderer/password_form_conversion_utils.h" #include "content/public/renderer/render_view.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" +#include "third_party/WebKit/public/platform/WebVector.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" diff --git a/components/autofill/renderer/password_generation_manager.cc b/components/autofill/renderer/password_generation_manager.cc index fab0eb1..7ba2cde 100644 --- a/components/autofill/renderer/password_generation_manager.cc +++ b/components/autofill/renderer/password_generation_manager.cc @@ -10,9 +10,9 @@ #include "content/public/renderer/password_form_conversion_utils.h" #include "content/public/renderer/render_view.h" #include "google_apis/gaia/gaia_urls.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" +#include "third_party/WebKit/public/platform/WebCString.h" +#include "third_party/WebKit/public/platform/WebRect.h" +#include "third_party/WebKit/public/platform/WebVector.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" diff --git a/components/sessions/DEPS b/components/sessions/DEPS index 339b6c8..cc311fc 100644 --- a/components/sessions/DEPS +++ b/components/sessions/DEPS @@ -4,6 +4,6 @@ include_rules = [ "+content/public/common", "+googleurl", "+sync", - "+third_party/WebKit/Source/Platform/chromium/public", + "+third_party/WebKit/public/platform", "+webkit", ] diff --git a/components/sessions/serialized_navigation_entry.cc b/components/sessions/serialized_navigation_entry.cc index e322830..fba0d3a 100644 --- a/components/sessions/serialized_navigation_entry.cc +++ b/components/sessions/serialized_navigation_entry.cc @@ -11,7 +11,7 @@ #include "content/public/browser/navigation_entry.h" #include "sync/protocol/session_specifics.pb.h" #include "sync/util/time.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h" +#include "third_party/WebKit/public/platform/WebReferrerPolicy.h" using content::NavigationEntry; diff --git a/components/sessions/serialized_navigation_entry_test_helper.cc b/components/sessions/serialized_navigation_entry_test_helper.cc index b1e2c00..00d7925 100644 --- a/components/sessions/serialized_navigation_entry_test_helper.cc +++ b/components/sessions/serialized_navigation_entry_test_helper.cc @@ -9,7 +9,7 @@ #include "components/sessions/serialized_navigation_entry.h" #include "googleurl/src/gurl.h" #include "testing/gtest/include/gtest/gtest.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h" +#include "third_party/WebKit/public/platform/WebReferrerPolicy.h" namespace sessions { diff --git a/components/sessions/serialized_navigation_entry_unittest.cc b/components/sessions/serialized_navigation_entry_unittest.cc index f8e5c3f..0a2453a 100644 --- a/components/sessions/serialized_navigation_entry_unittest.cc +++ b/components/sessions/serialized_navigation_entry_unittest.cc @@ -22,7 +22,7 @@ #include "sync/protocol/session_specifics.pb.h" #include "sync/util/time.h" #include "testing/gtest/include/gtest/gtest.h" -#include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h" +#include "third_party/WebKit/public/platform/WebReferrerPolicy.h" namespace sessions { namespace { diff --git a/components/visitedlink/renderer/DEPS b/components/visitedlink/renderer/DEPS index 49859da..ba7c7da 100644 --- a/components/visitedlink/renderer/DEPS +++ b/components/visitedlink/renderer/DEPS @@ -1,6 +1,5 @@ include_rules = [ "+content/public/renderer", - "+third_party/WebKit/Source/Platform/chromium/public", + "+third_party/WebKit/public/platform", "+third_party/WebKit/Source/WebKit/chromium/public", ] - |