Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: athena/content/delegate/test_app_content_delegate.cc

Issue 477523002: Athena: Adding basic resource management framework (un-/re-loading) of V2 applications (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with trunk Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698