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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/file_manager_private_api.h

Issue 550863003: Rename fileBrowserPrivate to fileManagerPrivate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/chromeos/extensions/file_manager/file_manager_private_api.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h b/chrome/browser/chromeos/extensions/file_manager/file_manager_private_api.h
similarity index 55%
rename from chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h
rename to chrome/browser/chromeos/extensions/file_manager/file_manager_private_api.h
index 2c9eff3c3f221b047bb07bb9bb98b8bb9e9d1da1..b0506e4f58cfdad160a3a264b9c47696db275027 100644
--- a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h
+++ b/chrome/browser/chromeos/extensions/file_manager/file_manager_private_api.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API_H_
-#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API_H_
+#ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_MANAGER_PRIVATE_API_H_
+#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_MANAGER_PRIVATE_API_H_
#include "base/memory/scoped_ptr.h"
#include "components/keyed_service/core/keyed_service.h"
@@ -14,17 +14,17 @@ namespace file_manager {
class EventRouter;
-// Manages and registers the fileBrowserPrivate API with the extension system.
-class FileBrowserPrivateAPI : public KeyedService {
+// Manages and registers the fileManagerPrivate API with the extension system.
+class FileManagerPrivateAPI : public KeyedService {
public:
- explicit FileBrowserPrivateAPI(Profile* profile);
- virtual ~FileBrowserPrivateAPI();
+ explicit FileManagerPrivateAPI(Profile* profile);
+ virtual ~FileManagerPrivateAPI();
// KeyedService overrides.
virtual void Shutdown() OVERRIDE;
- // Convenience function to return the FileBrowserPrivateAPI for a Profile.
- static FileBrowserPrivateAPI* Get(Profile* profile);
+ // Convenience function to return the FileManagerPrivateAPI for a Profile.
+ static FileManagerPrivateAPI* Get(Profile* profile);
EventRouter* event_router() { return event_router_.get(); }
@@ -34,4 +34,4 @@ class FileBrowserPrivateAPI : public KeyedService {
} // namespace file_manager
-#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API_H_
+#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_MANAGER_PRIVATE_API_H_

Powered by Google App Engine
This is Rietveld 408576698