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

Unified Diff: chrome/test/base/testing_browser_process.h

Issue 23727009: Cleanup: Remove chrome namespace for storage monitor and media galleries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/base/in_process_browser_test.cc ('k') | chrome/test/base/testing_browser_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/testing_browser_process.h
diff --git a/chrome/test/base/testing_browser_process.h b/chrome/test/base/testing_browser_process.h
index ea0eb6b0f65944d152d082dd097c6cd9a409b54b..3162de38ac6936e48603ea5dba4db9de38523f5b 100644
--- a/chrome/test/base/testing_browser_process.h
+++ b/chrome/test/base/testing_browser_process.h
@@ -105,9 +105,8 @@ class TestingBrowserProcess : public BrowserProcess {
virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE;
virtual PnaclComponentInstaller* pnacl_component_installer() OVERRIDE;
virtual BookmarkPromptController* bookmark_prompt_controller() OVERRIDE;
- virtual chrome::StorageMonitor* storage_monitor() OVERRIDE;
- virtual chrome::MediaFileSystemRegistry*
- media_file_system_registry() OVERRIDE;
+ virtual StorageMonitor* storage_monitor() OVERRIDE;
+ virtual MediaFileSystemRegistry* media_file_system_registry() OVERRIDE;
virtual bool created_local_state() const OVERRIDE;
#if defined(ENABLE_WEBRTC)
@@ -123,7 +122,7 @@ class TestingBrowserProcess : public BrowserProcess {
void SetSafeBrowsingService(SafeBrowsingService* sb_service);
void SetBookmarkPromptController(BookmarkPromptController* controller);
void SetSystemRequestContext(net::URLRequestContextGetter* context_getter);
- void SetStorageMonitor(scoped_ptr<chrome::StorageMonitor> storage_monitor);
+ void SetStorageMonitor(scoped_ptr<StorageMonitor> storage_monitor);
private:
scoped_ptr<content::NotificationService> notification_service_;
@@ -153,8 +152,8 @@ class TestingBrowserProcess : public BrowserProcess {
#endif // !defined(OS_IOS)
#if !defined(OS_IOS) && !defined(OS_ANDROID)
- scoped_ptr<chrome::StorageMonitor> storage_monitor_;
- scoped_ptr<chrome::MediaFileSystemRegistry> media_file_system_registry_;
+ scoped_ptr<StorageMonitor> storage_monitor_;
+ scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_;
#endif
// The following objects are not owned by TestingBrowserProcess:
« no previous file with comments | « chrome/test/base/in_process_browser_test.cc ('k') | chrome/test/base/testing_browser_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698