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

Side by Side Diff: chrome/common/render_messages.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
« no previous file with comments | « no previous file | chrome/renderer/chrome_render_process_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 // previous SetCookie message to be processed. 625 // previous SetCookie message to be processed.
626 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 626 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
627 GURL /* url */, 627 GURL /* url */,
628 GURL /* first_party_for_cookies */, 628 GURL /* first_party_for_cookies */,
629 std::string /* cookies */) 629 std::string /* cookies */)
630 630
631 // Provide the browser process with current renderer framerate. 631 // Provide the browser process with current renderer framerate.
632 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 632 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
633 int /* routing id */, 633 int /* routing id */,
634 float /* frames per second */) 634 float /* frames per second */)
635
636 // Tells the renderer to suspend/resume the webkit timers.
Yaron 2012/06/28 15:57:00 I think this should probably go with javascirpt me
637 IPC_MESSAGE_CONTROL1(ChromeViewMsg_ToggleWebKitSharedTimer,
638 bool /* suspend */)
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/chrome_render_process_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698