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 |
| deleted file mode 100644 |
| index 2c9eff3c3f221b047bb07bb9bb98b8bb9e9d1da1..0000000000000000000000000000000000000000 |
| --- a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h |
| +++ /dev/null |
| @@ -1,37 +0,0 @@ |
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| -// 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_ |
| - |
| -#include "base/memory/scoped_ptr.h" |
| -#include "components/keyed_service/core/keyed_service.h" |
| - |
| -class Profile; |
| - |
| -namespace file_manager { |
| - |
| -class EventRouter; |
| - |
| -// Manages and registers the fileBrowserPrivate API with the extension system. |
|
mtomasz
2014/09/08 08:51:35
Not related to this CL, but since I'm here, I thin
satorux1
2014/09/09 01:41:29
SGTM. Let me do it in a separate patch. I want the
|
| -class FileBrowserPrivateAPI : public KeyedService { |
| - public: |
| - explicit FileBrowserPrivateAPI(Profile* profile); |
| - virtual ~FileBrowserPrivateAPI(); |
| - |
| - // KeyedService overrides. |
| - virtual void Shutdown() OVERRIDE; |
| - |
| - // Convenience function to return the FileBrowserPrivateAPI for a Profile. |
| - static FileBrowserPrivateAPI* Get(Profile* profile); |
| - |
| - EventRouter* event_router() { return event_router_.get(); } |
| - |
| - private: |
| - scoped_ptr<EventRouter> event_router_; |
| -}; |
| - |
| -} // namespace file_manager |
| - |
| -#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API_H_ |