Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 15949025: In components/autofill, move renderer/ to content/renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to reviews Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/chrome_content_renderer_client.h" 5 #include "chrome/renderer/chrome_content_renderer_client.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/metrics/histogram.h" 9 #include "base/metrics/histogram.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 #include "chrome/renderer/prerender/prerenderer_client.h" 57 #include "chrome/renderer/prerender/prerenderer_client.h"
58 #include "chrome/renderer/printing/print_web_view_helper.h" 58 #include "chrome/renderer/printing/print_web_view_helper.h"
59 #include "chrome/renderer/safe_browsing/malware_dom_details.h" 59 #include "chrome/renderer/safe_browsing/malware_dom_details.h"
60 #include "chrome/renderer/safe_browsing/phishing_classifier_delegate.h" 60 #include "chrome/renderer/safe_browsing/phishing_classifier_delegate.h"
61 #include "chrome/renderer/searchbox/searchbox.h" 61 #include "chrome/renderer/searchbox/searchbox.h"
62 #include "chrome/renderer/searchbox/searchbox_extension.h" 62 #include "chrome/renderer/searchbox/searchbox_extension.h"
63 #include "chrome/renderer/spellchecker/spellcheck.h" 63 #include "chrome/renderer/spellchecker/spellcheck.h"
64 #include "chrome/renderer/spellchecker/spellcheck_provider.h" 64 #include "chrome/renderer/spellchecker/spellcheck_provider.h"
65 #include "chrome/renderer/tts_dispatcher.h" 65 #include "chrome/renderer/tts_dispatcher.h"
66 #include "chrome/renderer/validation_message_agent.h" 66 #include "chrome/renderer/validation_message_agent.h"
67 #include "components/autofill/renderer/autofill_agent.h" 67 #include "components/autofill/content/renderer/autofill_agent.h"
68 #include "components/autofill/renderer/password_autofill_agent.h" 68 #include "components/autofill/content/renderer/password_autofill_agent.h"
69 #include "components/autofill/renderer/password_generation_manager.h" 69 #include "components/autofill/content/renderer/password_generation_manager.h"
70 #include "components/visitedlink/renderer/visitedlink_slave.h" 70 #include "components/visitedlink/renderer/visitedlink_slave.h"
71 #include "content/public/common/content_constants.h" 71 #include "content/public/common/content_constants.h"
72 #include "content/public/renderer/render_thread.h" 72 #include "content/public/renderer/render_thread.h"
73 #include "content/public/renderer/render_view.h" 73 #include "content/public/renderer/render_view.h"
74 #include "content/public/renderer/render_view_visitor.h" 74 #include "content/public/renderer/render_view_visitor.h"
75 #include "extensions/common/constants.h" 75 #include "extensions/common/constants.h"
76 #include "grit/generated_resources.h" 76 #include "grit/generated_resources.h"
77 #include "grit/locale_settings.h" 77 #include "grit/locale_settings.h"
78 #include "grit/renderer_resources.h" 78 #include "grit/renderer_resources.h"
79 #include "ipc/ipc_sync_channel.h" 79 #include "ipc/ipc_sync_channel.h"
80 #include "net/base/net_errors.h" 80 #include "net/base/net_errors.h"
81 #include "third_party/WebKit/public/platform/WebURL.h"
82 #include "third_party/WebKit/public/platform/WebURLError.h"
83 #include "third_party/WebKit/public/platform/WebURLRequest.h"
84 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" 81 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h"
85 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 82 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 83 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" 84 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 85 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" 86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h"
90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" 87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h"
91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" 88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" 89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
90 #include "third_party/WebKit/public/platform/WebURL.h"
91 #include "third_party/WebKit/public/platform/WebURLError.h"
92 #include "third_party/WebKit/public/platform/WebURLRequest.h"
93 #include "ui/base/l10n/l10n_util.h" 93 #include "ui/base/l10n/l10n_util.h"
94 #include "ui/base/layout.h" 94 #include "ui/base/layout.h"
95 #include "ui/base/resource/resource_bundle.h" 95 #include "ui/base/resource/resource_bundle.h"
96 #include "ui/webui/jstemplate_builder.h" 96 #include "ui/webui/jstemplate_builder.h"
97 #include "webkit/plugins/npapi/plugin_list.h" 97 #include "webkit/plugins/npapi/plugin_list.h"
98 #include "webkit/plugins/ppapi/plugin_module.h" 98 #include "webkit/plugins/ppapi/plugin_module.h"
99 #include "webkit/plugins/ppapi/ppapi_interface_factory.h" 99 #include "webkit/plugins/ppapi/ppapi_interface_factory.h"
100 100
101 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR. 101 #include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR.
102 102
(...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after
1194 1194
1195 if (container->element().shadowHost().isNull()) 1195 if (container->element().shadowHost().isNull())
1196 return false; 1196 return false;
1197 1197
1198 WebString tag_name = container->element().shadowHost().tagName(); 1198 WebString tag_name = container->element().shadowHost().tagName();
1199 return tag_name.equals(WebString::fromUTF8(kWebViewTagName)) || 1199 return tag_name.equals(WebString::fromUTF8(kWebViewTagName)) ||
1200 tag_name.equals(WebString::fromUTF8(kAdViewTagName)); 1200 tag_name.equals(WebString::fromUTF8(kAdViewTagName));
1201 } 1201 }
1202 1202
1203 } // namespace chrome 1203 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/renderer/autofill/password_generation_manager_browsertest.cc ('k') | chrome/test/base/chrome_render_view_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698