diff options
author | oshima <oshima@chromium.org> | 2014-08-28 00:40:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-28 07:41:31 +0000 |
commit | a67fc9609e16eb3ce75a4a0e39f0e2622f1ba4da (patch) | |
tree | d4d223467fefcd3ea9ad53cd836d83191d78621e /athena/test/test_app_content_control_delegate_impl.cc | |
parent | 0d227dd16369e6712e50c77b41b754ba9f78153a (diff) | |
download | chromium_src-a67fc9609e16eb3ce75a4a0e39f0e2622f1ba4da.zip chromium_src-a67fc9609e16eb3ce75a4a0e39f0e2622f1ba4da.tar.gz chromium_src-a67fc9609e16eb3ce75a4a0e39f0e2622f1ba4da.tar.bz2 |
Cleanup: removing files that I forgot to remove in
https://codereview.chromium.org/501093003/
BUG=None
TBR=skuhne@chromium.org
Review URL: https://codereview.chromium.org/517483002
Cr-Commit-Position: refs/heads/master@{#292343}
Diffstat (limited to 'athena/test/test_app_content_control_delegate_impl.cc')
-rw-r--r-- | athena/test/test_app_content_control_delegate_impl.cc | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/athena/test/test_app_content_control_delegate_impl.cc b/athena/test/test_app_content_control_delegate_impl.cc deleted file mode 100644 index 0cecfec..0000000 --- a/athena/test/test_app_content_control_delegate_impl.cc +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright 2014 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 "athena/content/public/app_content_control_delegate.h" - -namespace athena { - -class AppContentControlDelegateImpl : public AppContentControlDelegate { - public: - AppContentControlDelegateImpl() {} - virtual ~AppContentControlDelegateImpl() {} - - virtual bool UnloadApplication( - const std::string& app_id, - content::BrowserContext* browser_context) OVERRIDE; - virtual bool RestartApplication( - const std::string& app_id, - content::BrowserContext* browser_context) OVERRIDE; - virtual std::string GetApplicationID( - content::WebContents* web_contents) OVERRIDE; - - private: - DISALLOW_COPY_AND_ASSIGN(AppContentControlDelegateImpl); -}; - -bool AppContentControlDelegateImpl::UnloadApplication( - const std::string& app_id, - content::BrowserContext* browser_context) { - // TODO(skuhne): Use the extension system to unload - // (|ExtensionService::TerminateExtension|) once it becomes available in - // Athena. - return false; -} - -bool AppContentControlDelegateImpl::RestartApplication( - const std::string& app_id, - content::BrowserContext* browser_context) { - return false; -} - -std::string AppContentControlDelegateImpl::GetApplicationID( - content::WebContents* web_contents) { - return std::string(); -} - -// static -AppContentControlDelegate* -AppContentControlDelegate::CreateAppContentControlDelegate() { - return new AppContentControlDelegateImpl; -} - -} // namespace athena |