Chromium Code Reviews| 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 |