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

Unified Diff: athena/content/public/app_content_delegate.h

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: . 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 side-by-side diff with in-line comments
Download patch
Index: athena/content/public/app_content_delegate.h
diff --git a/athena/content/public/app_content_delegate.h b/athena/content/public/app_content_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..13ab6e6bebd4e00f8e1553a49447698fb02ef54e
--- /dev/null
+++ b/athena/content/public/app_content_delegate.h
@@ -0,0 +1,41 @@
+// 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.
+
+#ifndef ATHENA_CONTENT_PUBLIC_APP_CONTENT_DLEGATE_H_
+#define ATHENA_CONTENT_PUBLIC_APP_CONTENT_DLEGATE_H_
+
+#include <string>
+
+#include "base/macros.h"
+
+namespace content {
+class BrowserContext;
+class WebContents;
+}
+
+namespace athena {
+
+// The application content delegate which can be overwritten for unit tests to
+// eliminate dependencies to the content / brwoser system.
+class AppContentDelegate {
+ public:
+ AppContentDelegate() {}
+ virtual ~AppContentDelegate() {}
+
+ // Unload an application. Returns true when unloaded.
+ virtual bool UnloadApplication(const std::string& app_id,
+ content::BrowserContext* browser_context);
+ // Restarts an application. Returns true when the restart was initiated.
+ virtual bool RestartApplication(const std::string& app_id,
+ content::BrowserContext* browser_context);
+ // Returns the application ID (or an empty string) for a given web content.
+ virtual std::string GetExtensionID(content::WebContents* web_contents);
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(AppContentDelegate);
+};
+
+} // namespace athena
+
+#endif // ATHENA_CONTENT_PUBLIC_APP_CONTENT_DLEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698