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

Side by Side Diff: chrome/renderer/chrome_render_process_observer.h

Issue 10690023: Upstream support for WebKit shared timer toggling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove blank line Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ 5 #ifndef CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_
6 #define CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ 6 #define CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 // If |on_navigation| is true, the clearing is delayed until the next 59 // If |on_navigation| is true, the clearing is delayed until the next
60 // navigation event. 60 // navigation event.
61 void OnClearCache(bool on_navigation); 61 void OnClearCache(bool on_navigation);
62 void OnGetCacheResourceStats(); 62 void OnGetCacheResourceStats();
63 void OnSetFieldTrialGroup(const std::string& fiel_trial_name, 63 void OnSetFieldTrialGroup(const std::string& fiel_trial_name,
64 const std::string& group_name); 64 const std::string& group_name);
65 void OnSetTcmallocHeapProfiling(bool profiling, const std::string& prefix); 65 void OnSetTcmallocHeapProfiling(bool profiling, const std::string& prefix);
66 void OnWriteTcmallocHeapProfile(const FilePath::StringType& filename); 66 void OnWriteTcmallocHeapProfile(const FilePath::StringType& filename);
67 void OnGetV8HeapStats(); 67 void OnGetV8HeapStats();
68 void OnPurgeMemory(); 68 void OnPurgeMemory();
69 void OnToggleWebKitSharedTimer(bool suspend);
69 70
70 static bool is_incognito_process_; 71 static bool is_incognito_process_;
71 scoped_ptr<content::ResourceDispatcherDelegate> resource_delegate_; 72 scoped_ptr<content::ResourceDispatcherDelegate> resource_delegate_;
72 chrome::ChromeContentRendererClient* client_; 73 chrome::ChromeContentRendererClient* client_;
73 // If true, the web cache shall be cleared before the next navigation event. 74 // If true, the web cache shall be cleared before the next navigation event.
74 bool clear_cache_pending_; 75 bool clear_cache_pending_;
75 RendererContentSettingRules content_setting_rules_; 76 RendererContentSettingRules content_setting_rules_;
76 77
77 DISALLOW_COPY_AND_ASSIGN(ChromeRenderProcessObserver); 78 DISALLOW_COPY_AND_ASSIGN(ChromeRenderProcessObserver);
78 }; 79 };
79 80
80 #endif // CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_ 81 #endif // CHROME_RENDERER_CHROME_RENDER_PROCESS_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698