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

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

Issue 22150005: file_manager: Rename file_manager_event_router.h to event_router.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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_browser_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_browser_private_api.h
index 60da2900f9ea52732b18d58deb4e5141af60d4f5..e7aaf4484c1827d296d9f2c6b120663801ca4736 100644
--- a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h
+++ b/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h
@@ -12,7 +12,7 @@ class Profile;
namespace file_manager {
-class FileManagerEventRouter;
+class EventRouter;
// Manages and registers the fileBrowserPrivate API with the extension system.
class FileBrowserPrivateAPI : public BrowserContextKeyedService {
@@ -26,12 +26,12 @@ class FileBrowserPrivateAPI : public BrowserContextKeyedService {
// Convenience function to return the FileBrowserPrivateAPI for a Profile.
static FileBrowserPrivateAPI* Get(Profile* profile);
- FileManagerEventRouter* event_router() {
+ EventRouter* event_router() {
hashimoto 2013/08/05 08:10:03 nit: Can't this function be fit into one line?
satorux1 2013/08/05 22:37:48 Done.
return event_router_.get();
}
private:
- scoped_ptr<FileManagerEventRouter> event_router_;
+ scoped_ptr<EventRouter> event_router_;
};
} // namespace file_manager

Powered by Google App Engine
This is Rietveld 408576698