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

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

Issue 700953002: Send all field trials from the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@finch4
Patch Set: Responded to comments. Created 5 years, 11 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
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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 // process so that they can be assigned to an Instant renderer. 665 // process so that they can be assigned to an Instant renderer.
666 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 666 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
667 std::vector<GURL> /* search_urls */, 667 std::vector<GURL> /* search_urls */,
668 GURL /* new_tab_page_url */) 668 GURL /* new_tab_page_url */)
669 669
670 #if defined(ENABLE_PLUGINS) 670 #if defined(ENABLE_PLUGINS)
671 // Sent by the renderer to check if crash reporting is enabled. 671 // Sent by the renderer to check if crash reporting is enabled.
672 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 672 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
673 bool /* enabled */) 673 bool /* enabled */)
674 #endif 674 #endif
675
676 // Sent by the renderer to indicate that a fields trial has been activated.
677 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
678 std::string /* name */)
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/chrome_render_message_filter.cc ('k') | chrome/renderer/chrome_render_process_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698