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

Unified Diff: extensions/browser/api/extensions_api_client.cc

Issue 354483004: Implement <appview> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@app_view_skeleton
Patch Set: Fixed formatting 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
Index: extensions/browser/api/extensions_api_client.cc
diff --git a/extensions/browser/api/extensions_api_client.cc b/extensions/browser/api/extensions_api_client.cc
index c4f80133a2b7365945045731cb0552a37ae274ca..6ce860bc3fc47bdbedeb4cd37f99928266a1c71d 100644
--- a/extensions/browser/api/extensions_api_client.cc
+++ b/extensions/browser/api/extensions_api_client.cc
@@ -24,4 +24,19 @@ void ExtensionsAPIClient::AddAdditionalValueStoreCaches(
const scoped_refptr<ObserverListThreadSafe<SettingsObserver> >& observers,
std::map<settings_namespace::Namespace, ValueStoreCache*>* caches) {}
+bool ExtensionsAPIClient::AppViewInternalAttachFrame(
+ content::BrowserContext* browser_context,
+ const GURL& url,
+ int guest_instance_id,
+ const std::string& guest_extension_id) {
+ return false;
+}
+
+bool ExtensionsAPIClient::AppViewInternalDenyRequest(
+ content::BrowserContext* browser_context,
+ int guest_instance_id,
+ const std::string& guest_extension_id) {
+ return false;
+}
+
} // namespace extensions
« no previous file with comments | « extensions/browser/api/extensions_api_client.h ('k') | extensions/browser/extension_function_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698