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

Unified Diff: extensions/browser/api/guest_view/web_view/web_view_internal_api.h

Issue 1181263007: WebView context menu cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: A new strategy. Rebased. Created 5 years, 6 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/guest_view/web_view/web_view_internal_api.h
diff --git a/extensions/browser/api/guest_view/web_view/web_view_internal_api.h b/extensions/browser/api/guest_view/web_view/web_view_internal_api.h
index f9b5143d92ff0138302aff619f2d69ac60bfd921..44559eb9c6fa56037f3d8f0ae570a3f744ce444c 100644
--- a/extensions/browser/api/guest_view/web_view/web_view_internal_api.h
+++ b/extensions/browser/api/guest_view/web_view/web_view_internal_api.h
@@ -359,6 +359,21 @@ class WebViewInternalReloadFunction : public WebViewInternalExtensionFunction {
DISALLOW_COPY_AND_ASSIGN(WebViewInternalReloadFunction);
};
+class WebViewInternalReportExtensionIdFunction : public AsyncExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("webViewInternal.reportExtensionId",
+ WEBVIEWINTERNAL_SETAUTOSIZE);
+
+ WebViewInternalReportExtensionIdFunction();
+
+ protected:
+ ~WebViewInternalReportExtensionIdFunction() override;
+ bool RunAsync() final;
Devlin 2015/07/06 17:46:18 See my comment in the .cc for why this is moot, bu
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(WebViewInternalReportExtensionIdFunction);
+};
+
class WebViewInternalSetPermissionFunction
: public WebViewInternalExtensionFunction {
public:

Powered by Google App Engine
This is Rietveld 408576698