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

Unified Diff: chrome/test/base/chrome_test_suite.cc

Issue 24544004: Remove the chrome namespace around ChromeContent[Renderer]Client. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/base/chrome_render_view_test.h ('k') | chrome/test/base/in_process_browser_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/chrome_test_suite.cc
diff --git a/chrome/test/base/chrome_test_suite.cc b/chrome/test/base/chrome_test_suite.cc
index bd9d92be50f7ad4978c4c48107b05e7264539743..a8453bf007e811bece56cd332df3e86c4038e2f0 100644
--- a/chrome/test/base/chrome_test_suite.cc
+++ b/chrome/test/base/chrome_test_suite.cc
@@ -111,7 +111,7 @@ class ChromeTestSuiteInitializer : public testing::EmptyTestEventListener {
private:
void SetUpContentClients() {
- content_client_.reset(new chrome::ChromeContentClient);
+ content_client_.reset(new ChromeContentClient);
content::SetContentClient(content_client_.get());
// TODO(ios): Bring this back once ChromeContentBrowserClient is building.
#if !defined(OS_IOS)
@@ -144,7 +144,7 @@ class ChromeTestSuiteInitializer : public testing::EmptyTestEventListener {
}
// Client implementations for the content module.
- scoped_ptr<chrome::ChromeContentClient> content_client_;
+ scoped_ptr<ChromeContentClient> content_client_;
// TODO(ios): Bring this back once ChromeContentBrowserClient is building.
#if !defined(OS_IOS)
scoped_ptr<chrome::ChromeContentBrowserClient> browser_content_client_;
@@ -253,7 +253,7 @@ void ChromeTestSuite::Initialize() {
}
content::ContentClient* ChromeTestSuite::CreateClientForInitialization() {
- return new chrome::ChromeContentClient();
+ return new ChromeContentClient();
}
void ChromeTestSuite::Shutdown() {
« no previous file with comments | « chrome/test/base/chrome_render_view_test.h ('k') | chrome/test/base/in_process_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698