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

Unified Diff: extensions/browser/extension_function_dispatcher.h

Issue 404883002: Allow extension APIs to be called from WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/extension_function_dispatcher.h
diff --git a/extensions/browser/extension_function_dispatcher.h b/extensions/browser/extension_function_dispatcher.h
index e6ef445597c476cf6af14f0900384249eac9dfeb..751b82220895b5192081527cbf8dea0fde54783a 100644
--- a/extensions/browser/extension_function_dispatcher.h
+++ b/extensions/browser/extension_function_dispatcher.h
@@ -106,12 +106,6 @@ class ExtensionFunctionDispatcher
// TODO (jam): convert all callers to use RenderFrameHost.
void Dispatch(const ExtensionHostMsg_Request_Params& params,
content::RenderViewHost* render_view_host);
- // Dispatch an extension function and calls |callback| when the execution
- // completes.
- void DispatchWithCallback(
- const ExtensionHostMsg_Request_Params& params,
- content::RenderFrameHost* render_frame_host,
- const ExtensionFunction::ResponseCallback& callback);
// Called when an ExtensionFunction is done executing, after it has sent
// a response (if any) to the extension.
@@ -134,7 +128,6 @@ class ExtensionFunctionDispatcher
// is returned. |function| must not be run in that case.
static bool CheckPermissions(
ExtensionFunction* function,
- const Extension* extension,
const ExtensionHostMsg_Request_Params& params,
const ExtensionFunction::ResponseCallback& callback);

Powered by Google App Engine
This is Rietveld 408576698