diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-06 23:03:48 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-06 23:03:48 +0000 |
commit | f07e4443ef64a70f8588d1051f805fdb2ac187fd (patch) | |
tree | 7ce7b4b32c4dc6179e2e0305a3086b8bdeed8fad /chrome/renderer | |
parent | 028f0bf5a425e4a64141561e93e777579b48c11b (diff) | |
download | chromium_src-f07e4443ef64a70f8588d1051f805fdb2ac187fd.zip chromium_src-f07e4443ef64a70f8588d1051f805fdb2ac187fd.tar.gz chromium_src-f07e4443ef64a70f8588d1051f805fdb2ac187fd.tar.bz2 |
In components/autofill, move renderer/ to content/renderer
This change is part of moving components/autofill into its eventual structure
as a layered component. This CL additionally adds a README in
components/autofill that explains the project of making autofill into a layered
component.
TBR=thakis
BUG=247015
Review URL: https://chromiumcodereview.appspot.com/15949025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204642 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
6 files changed, 20 insertions, 20 deletions
diff --git a/chrome/renderer/DEPS b/chrome/renderer/DEPS index adab009..ddf4607 100644 --- a/chrome/renderer/DEPS +++ b/chrome/renderer/DEPS @@ -1,6 +1,6 @@ include_rules = [ "+components/autofill/common", - "+components/autofill/renderer", + "+components/autofill/content/renderer", "+components/visitedlink/renderer", "+content/public/renderer", "+extensions/common", diff --git a/chrome/renderer/autofill/form_autofill_browsertest.cc b/chrome/renderer/autofill/form_autofill_browsertest.cc index ccc4fbf..ce3717b 100644 --- a/chrome/renderer/autofill/form_autofill_browsertest.cc +++ b/chrome/renderer/autofill/form_autofill_browsertest.cc @@ -12,11 +12,9 @@ #include "chrome/test/base/chrome_render_view_test.h" #include "components/autofill/common/form_data.h" #include "components/autofill/common/web_element_descriptor.h" -#include "components/autofill/renderer/form_autofill_util.h" -#include "components/autofill/renderer/form_cache.h" +#include "components/autofill/content/renderer/form_autofill_util.h" +#include "components/autofill/content/renderer/form_cache.h" #include "testing/gtest/include/gtest/gtest.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/WebFormControlElement.h" @@ -24,6 +22,8 @@ #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSelectElement.h" +#include "third_party/WebKit/public/platform/WebString.h" +#include "third_party/WebKit/public/platform/WebVector.h" #include "webkit/glue/web_io_operators.h" using WebKit::WebDocument; diff --git a/chrome/renderer/autofill/page_click_tracker_browsertest.cc b/chrome/renderer/autofill/page_click_tracker_browsertest.cc index e6b3483..8b49872 100644 --- a/chrome/renderer/autofill/page_click_tracker_browsertest.cc +++ b/chrome/renderer/autofill/page_click_tracker_browsertest.cc @@ -3,15 +3,15 @@ // found in the LICENSE file. #include "base/basictypes.h" -#include "components/autofill/renderer/page_click_listener.h" -#include "components/autofill/renderer/page_click_tracker.h" +#include "components/autofill/content/renderer/page_click_listener.h" +#include "components/autofill/content/renderer/page_click_tracker.h" #include "content/public/renderer/render_view.h" #include "content/public/test/render_view_test.h" #include "testing/gtest/include/gtest/gtest.h" -#include "third_party/WebKit/public/platform/WebSize.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" +#include "third_party/WebKit/public/platform/WebSize.h" #include "ui/base/keycodes/keyboard_codes.h" namespace autofill { diff --git a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc index b141696..07647c1 100644 --- a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc +++ b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc @@ -8,17 +8,17 @@ #include "components/autofill/common/autofill_messages.h" #include "components/autofill/common/form_data.h" #include "components/autofill/common/form_field_data.h" -#include "components/autofill/renderer/autofill_agent.h" -#include "components/autofill/renderer/password_autofill_agent.h" +#include "components/autofill/content/renderer/autofill_agent.h" +#include "components/autofill/content/renderer/password_autofill_agent.h" #include "testing/gtest/include/gtest/gtest.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/WebFormElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" +#include "third_party/WebKit/public/platform/WebString.h" +#include "third_party/WebKit/public/platform/WebVector.h" #include "ui/base/keycodes/keyboard_codes.h" using content::PasswordForm; diff --git a/chrome/renderer/autofill/password_generation_manager_browsertest.cc b/chrome/renderer/autofill/password_generation_manager_browsertest.cc index d5e42a1..eed9fb4 100644 --- a/chrome/renderer/autofill/password_generation_manager_browsertest.cc +++ b/chrome/renderer/autofill/password_generation_manager_browsertest.cc @@ -9,11 +9,11 @@ #include "base/utf_string_conversions.h" #include "chrome/test/base/chrome_render_view_test.h" #include "components/autofill/common/autofill_messages.h" -#include "components/autofill/renderer/password_generation_manager.h" +#include "components/autofill/content/renderer/password_generation_manager.h" #include "testing/gtest/include/gtest/gtest.h" -#include "third_party/WebKit/public/platform/WebString.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebWidget.h" +#include "third_party/WebKit/public/platform/WebString.h" using WebKit::WebDocument; using WebKit::WebElement; diff --git a/chrome/renderer/chrome_content_renderer_client.cc b/chrome/renderer/chrome_content_renderer_client.cc index 092b48f..ddab596 100644 --- a/chrome/renderer/chrome_content_renderer_client.cc +++ b/chrome/renderer/chrome_content_renderer_client.cc @@ -64,9 +64,9 @@ #include "chrome/renderer/spellchecker/spellcheck_provider.h" #include "chrome/renderer/tts_dispatcher.h" #include "chrome/renderer/validation_message_agent.h" -#include "components/autofill/renderer/autofill_agent.h" -#include "components/autofill/renderer/password_autofill_agent.h" -#include "components/autofill/renderer/password_generation_manager.h" +#include "components/autofill/content/renderer/autofill_agent.h" +#include "components/autofill/content/renderer/password_autofill_agent.h" +#include "components/autofill/content/renderer/password_generation_manager.h" #include "components/visitedlink/renderer/visitedlink_slave.h" #include "content/public/common/content_constants.h" #include "content/public/renderer/render_thread.h" @@ -78,9 +78,6 @@ #include "grit/renderer_resources.h" #include "ipc/ipc_sync_channel.h" #include "net/base/net_errors.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/WebCache.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" @@ -90,6 +87,9 @@ #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.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 "ui/base/l10n/l10n_util.h" #include "ui/base/layout.h" #include "ui/base/resource/resource_bundle.h" |