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

Unified Diff: chrome/browser/media_galleries/fileapi/native_media_file_util.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/media_galleries/fileapi/native_media_file_util.h
diff --git a/chrome/browser/media_galleries/fileapi/native_media_file_util.h b/chrome/browser/media_galleries/fileapi/native_media_file_util.h
index a797e144873cc9d73577045e2c4f346b009ea58d..fe3bf5865a6b7a153f9906528dbad95b998a5b87 100644
--- a/chrome/browser/media_galleries/fileapi/native_media_file_util.h
+++ b/chrome/browser/media_galleries/fileapi/native_media_file_util.h
@@ -9,8 +9,6 @@
#include "base/memory/weak_ptr.h"
#include "webkit/browser/fileapi/async_file_util.h"
-namespace chrome {
-
class MediaPathFilter;
// This class handles native file system operations with media type filtering.
@@ -172,7 +170,7 @@ class NativeMediaFileUtil : public fileapi::AsyncFileUtil {
scoped_refptr<webkit_blob::ShareableFileReference>* file_ref);
protected:
- chrome::MediaPathFilter* media_path_filter() {
+ MediaPathFilter* media_path_filter() {
return media_path_filter_;
}
@@ -201,11 +199,9 @@ class NativeMediaFileUtil : public fileapi::AsyncFileUtil {
base::WeakPtrFactory<NativeMediaFileUtil> weak_factory_;
// Not owned, owned by the backend which owns this.
- chrome::MediaPathFilter* media_path_filter_;
+ MediaPathFilter* media_path_filter_;
DISALLOW_COPY_AND_ASSIGN(NativeMediaFileUtil);
};
-} // namespace chrome
-
#endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_NATIVE_MEDIA_FILE_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698