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

Side by Side Diff: chrome/common/render_messages.h

Issue 289863005: [Mac] Maximise timer slack for background tabs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial review Created 6 years, 7 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <stdint.h> 6 #include <stdint.h>
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 // Tells the renderer to set its maximum cache size to the supplied value. 227 // Tells the renderer to set its maximum cache size to the supplied value.
228 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetCacheCapacities, 228 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetCacheCapacities,
229 size_t /* min_dead_capacity */, 229 size_t /* min_dead_capacity */,
230 size_t /* max_dead_capacity */, 230 size_t /* max_dead_capacity */,
231 size_t /* capacity */) 231 size_t /* capacity */)
232 232
233 // Tells the renderer to clear the cache. 233 // Tells the renderer to clear the cache.
234 IPC_MESSAGE_CONTROL1(ChromeViewMsg_ClearCache, 234 IPC_MESSAGE_CONTROL1(ChromeViewMsg_ClearCache,
235 bool /* on_navigation */) 235 bool /* on_navigation */)
236 236
237 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetCoalesceTimers,
238 bool /* enabled */)
tonyg 2014/05/20 14:14:52 I might be missing something, but the renderer alr
239
240
237 // For WebUI testing, this message requests JavaScript to be executed at a time 241 // For WebUI testing, this message requests JavaScript to be executed at a time
238 // which is late enough to not be thrown out, and early enough to be before 242 // which is late enough to not be thrown out, and early enough to be before
239 // onload events are fired. 243 // onload events are fired.
240 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript, 244 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript,
241 base::string16 /* javascript */) 245 base::string16 /* javascript */)
242 246
243 // Set the content setting rules stored by the renderer. 247 // Set the content setting rules stored by the renderer.
244 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, 248 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules,
245 RendererContentSettingRules /* rules */) 249 RendererContentSettingRules /* rules */)
246 250
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 // WebKit. 714 // WebKit.
711 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, 715 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
712 base::string16 /* message */, 716 base::string16 /* message */,
713 base::string16 /* source */, 717 base::string16 /* source */,
714 extensions::StackTrace /* stack trace */, 718 extensions::StackTrace /* stack trace */,
715 int32 /* severity level */) 719 int32 /* severity level */)
716 720
717 // Sent by the renderer to check if crash reporting is enabled. 721 // Sent by the renderer to check if crash reporting is enabled.
718 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 722 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
719 bool /* enabled */) 723 bool /* enabled */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698