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

Unified Diff: extensions/browser/extensions_browser_client.h

Issue 354483004: Implement <appview> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@app_view_skeleton
Patch Set: Fixed app_shell_browsertests build Created 6 years, 5 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
« no previous file with comments | « extensions/browser/extension_function_histogram_value.h ('k') | extensions/common/api/api.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extensions_browser_client.h
diff --git a/extensions/browser/extensions_browser_client.h b/extensions/browser/extensions_browser_client.h
index 293b2af7039e152ae8fdc8eb6070cc9dac4035c1..5f98de4ca5a03c94e1823604346689b8726edb09 100644
--- a/extensions/browser/extensions_browser_client.h
+++ b/extensions/browser/extensions_browser_client.h
@@ -10,6 +10,7 @@
#include "base/memory/scoped_ptr.h"
#include "extensions/browser/extension_prefs_observer.h"
+#include "url/gurl.h"
class ExtensionFunctionRegistry;
class PrefService;
@@ -179,6 +180,15 @@ class ExtensionsBrowserClient {
virtual ComponentExtensionResourceManager*
GetComponentExtensionResourceManager() = 0;
+ // Completes the creation of a WebContents associated with the provided
+ // |guest_extension_id|. Returns whether the operation was completed
+ // successfully.
+ virtual bool CompletePendingEmbedRequest(
not at google - send to devlin 2014/07/10 19:44:16 kinda weird that there is a "complete" in this int
James Cook 2014/07/10 19:58:06 I think the primary problem here is that: 1. <appv
+ const GURL& url,
+ int guest_instance_id,
+ content::BrowserContext* browser_context,
+ const std::string& guest_extension_id) = 0;
+
// Returns the single instance of |this|.
static ExtensionsBrowserClient* Get();
« no previous file with comments | « extensions/browser/extension_function_histogram_value.h ('k') | extensions/common/api/api.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698