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

Unified Diff: chrome/renderer/chrome_render_process_observer.h

Issue 23729005: Enable Activity Logging by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added definition of 'active' Created 7 years, 4 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/renderer/chrome_render_process_observer.h
diff --git a/chrome/renderer/chrome_render_process_observer.h b/chrome/renderer/chrome_render_process_observer.h
index e970802e3d613b17ae8555b1b25622c148c8fda5..a120d514e8cd7e39d9eae92718261232513862de 100644
--- a/chrome/renderer/chrome_render_process_observer.h
+++ b/chrome/renderer/chrome_render_process_observer.h
@@ -36,10 +36,6 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver {
static bool is_incognito_process() { return is_incognito_process_; }
- static bool extension_activity_log_enabled() {
- return extension_activity_log_enabled_;
- }
-
// Needs to be called by RenderViews in case of navigations to execute
// any 'clear cache' commands that were delayed until the next navigation.
void ExecutePendingClearCache();
@@ -55,7 +51,6 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver {
virtual void OnRenderProcessShutdown() OVERRIDE;
void OnSetIsIncognitoProcess(bool is_incognito_process);
- void OnSetExtensionActivityLogEnabled(bool extension_activity_log_enabled);
void OnSetContentSettingsForCurrentURL(
const GURL& url, const ContentSettings& content_settings);
void OnSetContentSettingRules(const RendererContentSettingRules& rules);
@@ -73,7 +68,6 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver {
void OnToggleWebKitSharedTimer(bool suspend);
static bool is_incognito_process_;
- static bool extension_activity_log_enabled_;
scoped_ptr<content::ResourceDispatcherDelegate> resource_delegate_;
chrome::ChromeContentRendererClient* client_;
// If true, the web cache shall be cleared before the next navigation event.

Powered by Google App Engine
This is Rietveld 408576698