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

Unified Diff: chrome/browser/ui/webui/extensions/extension_activity_ui.h

Issue 11421192: Save extension activity log to a file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: something about lkgr Created 7 years, 11 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/ui/webui/extensions/extension_activity_ui.h
===================================================================
--- chrome/browser/ui/webui/extensions/extension_activity_ui.h (revision 177317)
+++ chrome/browser/ui/webui/extensions/extension_activity_ui.h (working copy)
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_ACTIVITY_UI_H_
#define CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_ACTIVITY_UI_H_
+#include <string>
+#include <vector>
#include "chrome/browser/extensions/activity_log.h"
#include "content/public/browser/web_ui_controller.h"
@@ -25,10 +27,11 @@
virtual void OnExtensionActivity(
const extensions::Extension* extension,
extensions::ActivityLog::Activity activity,
- const std::vector<std::string>& messages) OVERRIDE;
+ const std::string& message) OVERRIDE;
private:
const extensions::Extension* extension_;
+ Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(ExtensionActivityUI);
};
« no previous file with comments | « chrome/browser/profiles/profile_dependency_manager.cc ('k') | chrome/browser/ui/webui/extensions/extension_activity_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698