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

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

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 | « chrome/browser/extensions/activity_log/activity_log.h ('k') | chrome/browser/extensions/tab_helper.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.cc
diff --git a/chrome/browser/extensions/activity_log/activity_log.cc b/chrome/browser/extensions/activity_log/activity_log.cc
index 83935ca88ddc84becb141f594be666a68cfb3882..1ae30589c641777146503f1dd34a1c1ce4d36e88 100644
--- a/chrome/browser/extensions/activity_log/activity_log.cc
+++ b/chrome/browser/extensions/activity_log/activity_log.cc
@@ -394,7 +394,7 @@ ActivityLog::ActivityLog(content::BrowserContext* context)
FROM_HERE,
base::Bind(&ActivityLog::StartObserving, base::Unretained(this)));
-// None of this should run on Android since the AL is behind ENABLE_EXTENSION
+// None of this should run on Android since the AL is behind ENABLE_EXTENSIONS
// checks. However, UmaPolicy can't even compile on Android because it uses
// BrowserList and related classes that aren't compiled for Android.
#if !defined(OS_ANDROID)
@@ -566,6 +566,7 @@ void ActivityLog::LogAction(scoped_refptr<Action> action) {
VLOG(1) << action->PrintForDebug();
}
+#if defined(ENABLE_EXTENSIONS)
void ActivityLog::OnScriptsExecuted(
const content::WebContents* web_contents,
const ExecutingScriptsMap& extension_ids,
@@ -609,6 +610,7 @@ void ActivityLog::OnScriptsExecuted(
}
}
}
+#endif
void ActivityLog::OnApiEventDispatched(const std::string& extension_id,
const std::string& event_name,
« no previous file with comments | « chrome/browser/extensions/activity_log/activity_log.h ('k') | chrome/browser/extensions/tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698