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

Unified Diff: chrome/browser/extensions/api/media_galleries/media_galleries_api.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
Index: chrome/browser/extensions/api/media_galleries/media_galleries_api.h
diff --git a/chrome/browser/extensions/api/media_galleries/media_galleries_api.h b/chrome/browser/extensions/api/media_galleries/media_galleries_api.h
index ededafad404224cbe857e3b43464b24bcb1ed7c8..ac0cd5e4144cd7acb440d0f963e7b7cf34f0ca97 100644
--- a/chrome/browser/extensions/api/media_galleries/media_galleries_api.h
+++ b/chrome/browser/extensions/api/media_galleries/media_galleries_api.h
@@ -34,28 +34,25 @@ class MediaGalleriesGetMediaFileSystemsFunction
MediaGalleries::GetMediaFileSystemsInteractivity interactive);
// Always show the dialog.
- void AlwaysShowDialog(
- const std::vector<chrome::MediaFileSystemInfo>& filesystems);
+ void AlwaysShowDialog(const std::vector<MediaFileSystemInfo>& filesystems);
// If no galleries are found, show the dialog, otherwise return them.
void ShowDialogIfNoGalleries(
- const std::vector<chrome::MediaFileSystemInfo>& filesystems);
+ const std::vector<MediaFileSystemInfo>& filesystems);
// Grabs galleries from the media file system registry and passes them to
// |ReturnGalleries|.
void GetAndReturnGalleries();
// Returns galleries to the caller.
- void ReturnGalleries(
- const std::vector<chrome::MediaFileSystemInfo>& filesystems);
+ void ReturnGalleries(const std::vector<MediaFileSystemInfo>& filesystems);
// Shows the configuration dialog to edit gallery preferences.
void ShowDialog();
// A helper method that calls
// MediaFileSystemRegistry::GetMediaFileSystemsForExtension().
- void GetMediaFileSystemsForExtension(
- const chrome::MediaFileSystemsCallback& cb);
+ void GetMediaFileSystemsForExtension(const MediaFileSystemsCallback& cb);
};
} // namespace extensions
« no previous file with comments | « chrome/browser/chromeos/camera_detector.cc ('k') | chrome/browser/extensions/api/media_galleries/media_galleries_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698