diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-13 00:37:54 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-13 00:37:54 +0000 |
commit | 95951999533ca1e6d15bc741a3a0885dcf0b1a03 (patch) | |
tree | 98c44c9c303aabcb487e2793a25d2171b06bd05f /chrome/browser/browser_process.h | |
parent | 31cf1479f372a6aaed29973d9091f8a55b07b884 (diff) | |
download | chromium_src-95951999533ca1e6d15bc741a3a0885dcf0b1a03.zip chromium_src-95951999533ca1e6d15bc741a3a0885dcf0b1a03.tar.gz chromium_src-95951999533ca1e6d15bc741a3a0885dcf0b1a03.tar.bz2 |
Cleanup: Remove chrome namespace for storage monitor and media galleries.
BUG=289619
Review URL: https://chromiumcodereview.appspot.com/23727009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222938 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index ca828e9..cbad4bc 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -30,6 +30,7 @@ class GpuModeManager; class IconManager; class IntranetRedirectDetector; class IOThread; +class MediaFileSystemRegistry; class MetricsService; class NotificationUIManager; class PnaclComponentInstaller; @@ -40,16 +41,12 @@ class ProfileManager; class RenderWidgetSnapshotTaker; class SafeBrowsingService; class StatusTray; +class StorageMonitor; class WatchDogThread; #if defined(ENABLE_WEBRTC) class WebRtcLogUploader; #endif -namespace chrome { -class MediaFileSystemRegistry; -class StorageMonitor; -} - namespace chrome_variations { class VariationsService; } @@ -216,9 +213,9 @@ class BrowserProcess { virtual BookmarkPromptController* bookmark_prompt_controller() = 0; - virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0; + virtual MediaFileSystemRegistry* media_file_system_registry() = 0; - virtual chrome::StorageMonitor* storage_monitor() = 0; + virtual StorageMonitor* storage_monitor() = 0; virtual bool created_local_state() const = 0; |