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

Unified Diff: chrome/browser/renderer_host/chrome_render_message_filter.h

Issue 13726026: Added ActivityLog tests and associated bugfixes/extra logging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrapped line Created 7 years, 8 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: chrome/browser/renderer_host/chrome_render_message_filter.h
diff --git a/chrome/browser/renderer_host/chrome_render_message_filter.h b/chrome/browser/renderer_host/chrome_render_message_filter.h
index c69239cc6ef205289ff0e2df90c8f95bf68b692a..50ac1e4a9ca5e024ceeafdd65d29c7b57c6924a8 100644
--- a/chrome/browser/renderer_host/chrome_render_message_filter.h
+++ b/chrome/browser/renderer_host/chrome_render_message_filter.h
@@ -17,7 +17,7 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h"
class CookieSettings;
-struct ExtensionHostMsg_APIAction_Params;
+struct ExtensionHostMsg_APIActionOrEvent_Params;
struct ExtensionHostMsg_DOMAction_Params;
struct ExtensionHostMsg_Request_Params;
class ExtensionInfoMap;
@@ -155,10 +155,13 @@ class ChromeRenderMessageFilter : public content::BrowserMessageFilter {
void OnExtensionResumeRequests(int route_id);
void OnAddAPIActionToExtensionActivityLog(
const std::string& extension_id,
- const ExtensionHostMsg_APIAction_Params& params);
+ const ExtensionHostMsg_APIActionOrEvent_Params& params);
void OnAddDOMActionToExtensionActivityLog(
const std::string& extension_id,
const ExtensionHostMsg_DOMAction_Params& params);
+ void OnAddEventToExtensionActivityLog(
+ const std::string& extension_id,
+ const ExtensionHostMsg_APIActionOrEvent_Params& params);
void OnAllowDatabase(int render_view_id,
const GURL& origin_url,
const GURL& top_origin_url,

Powered by Google App Engine
This is Rietveld 408576698