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

Unified Diff: chrome/browser/extensions/activity_log/activity_log.h

Issue 349713002: Android: Remove events extensions API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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
« no previous file with comments | « no previous file | chrome/browser/extensions/activity_log/activity_log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/activity_log/activity_log.h
diff --git a/chrome/browser/extensions/activity_log/activity_log.h b/chrome/browser/extensions/activity_log/activity_log.h
index 773aab7f58415804606b36170aa9068af741e550..194b409927e19ca5efe97d56746c4ba5dbb8162a 100644
--- a/chrome/browser/extensions/activity_log/activity_log.h
+++ b/chrome/browser/extensions/activity_log/activity_log.h
@@ -40,9 +40,14 @@ class ExtensionRegistry;
// It writes to an ActivityDatabase on a separate thread to record the activity.
// Each profile has different extensions, so we keep a different database for
// each profile.
+//
+// TODO(thestig) Remove ENABLE_EXTENSIONS checks when ActivityLog is no longer
+// built on platforms that do not support extensions.
class ActivityLog : public BrowserContextKeyedAPI,
public ApiActivityMonitor,
+#if defined(ENABLE_EXTENSIONS)
public TabHelper::ScriptExecutionObserver,
+#endif
public ExtensionRegistryObserver {
public:
// Observers can listen for activity events. There is probably only one
@@ -144,6 +149,7 @@ class ActivityLog : public BrowserContextKeyedAPI,
// ExtensionSystem/ExtensionService are done with their own setup.
void StartObserving();
+#if defined(ENABLE_EXTENSIONS)
// TabHelper::ScriptExecutionObserver implementation.
// Fires when a ContentScript is executed.
virtual void OnScriptsExecuted(
@@ -151,6 +157,7 @@ class ActivityLog : public BrowserContextKeyedAPI,
const ExecutingScriptsMap& extension_ids,
int32 page_id,
const GURL& on_url) OVERRIDE;
+#endif
// At the moment, ActivityLog will use only one policy for summarization.
// These methods are used to choose and set the most appropriate policy.
« no previous file with comments | « no previous file | chrome/browser/extensions/activity_log/activity_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698