| Index: chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.cc
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.cc b/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.cc
|
| deleted file mode 100644
|
| index e6f4b40491a675b1c14238fa647acf0d4090dae1..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.cc
|
| +++ /dev/null
|
| @@ -1,29 +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.
|
| -
|
| -#include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h"
|
| -
|
| -#include "chrome/browser/chromeos/extensions/file_manager/event_router.h"
|
| -#include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_api_factory.h"
|
| -
|
| -namespace file_manager {
|
| -
|
| -FileBrowserPrivateAPI::FileBrowserPrivateAPI(Profile* profile)
|
| - : event_router_(new EventRouter(profile)) {
|
| - event_router_->ObserveEvents();
|
| -}
|
| -
|
| -FileBrowserPrivateAPI::~FileBrowserPrivateAPI() {
|
| -}
|
| -
|
| -void FileBrowserPrivateAPI::Shutdown() {
|
| - event_router_->Shutdown();
|
| -}
|
| -
|
| -// static
|
| -FileBrowserPrivateAPI* FileBrowserPrivateAPI::Get(Profile* profile) {
|
| - return FileBrowserPrivateAPIFactory::GetForProfile(profile);
|
| -}
|
| -
|
| -} // namespace file_manager
|
|
|