OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "athena/content/public/app_content_delegate.h" | |
oshima
2014/08/18 23:14:02
can this move to athena/test ? (athena/test can de
Mr4D (OOO till 08-26)
2014/08/19 14:21:10
Done.
| |
6 | |
7 namespace athena { | |
8 | |
9 bool AppContentDelegate::UnloadApplication( | |
10 const std::string& app_id, | |
11 content::BrowserContext* browser_context) { | |
12 // TODO(skuhne): Use the extension system to unload | |
13 // (|ExtensionService::TerminateExtension|) once it becomes available in | |
14 // Athena. | |
15 return false; | |
16 } | |
17 | |
18 bool AppContentDelegate::RestartApplication( | |
19 const std::string& app_id, | |
20 content::BrowserContext* browser_context) { | |
21 return false; | |
22 } | |
23 | |
24 std::string AppContentDelegate::GetExtensionID( | |
25 content::WebContents* web_contents) { | |
26 return std::string(); | |
27 } | |
28 | |
29 } // namespace athena | |
OLD | NEW |