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

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

Issue 1962623005: More instrumentation to diagnose an Android renderer crash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo. Created 4 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
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 <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript, 196 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript,
197 base::string16 /* javascript */) 197 base::string16 /* javascript */)
198 #endif 198 #endif
199 199
200 // Set the content setting rules stored by the renderer. 200 // Set the content setting rules stored by the renderer.
201 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, 201 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules,
202 RendererContentSettingRules /* rules */) 202 RendererContentSettingRules /* rules */)
203 203
204 // Tells the renderer to create a FieldTrial, and by using a 100% probability 204 // Tells the renderer to create a FieldTrial, and by using a 100% probability
205 // for the FieldTrial, forces the FieldTrial to have assigned group name. 205 // for the FieldTrial, forces the FieldTrial to have assigned group name.
206 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetFieldTrialGroup, 206 IPC_MESSAGE_CONTROL4(ChromeViewMsg_SetFieldTrialGroup,
207 std::string /* field trial name */, 207 std::string /* field trial name */,
208 std::string /* group name that was assigned. */, 208 std::string /* group name that was assigned. */,
209 base::ProcessId /* for debugging, the sender process id */) 209 base::ProcessId /* for debugging, the sender process id */,
210 int32_t /* for debugging, the debug token */)
210 211
211 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber, 212 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber,
212 int /* page_seq_no */) 213 int /* page_seq_no */)
213 214
214 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) 215 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant)
215 216
216 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, 217 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults,
217 bool /* display_instant_results */) 218 bool /* display_instant_results */)
218 219
219 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, 220 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged,
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 576
576 // Record a sample string to a Rappor metric. 577 // Record a sample string to a Rappor metric.
577 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, 578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor,
578 std::string /* metric */, 579 std::string /* metric */,
579 std::string /* sample */) 580 std::string /* sample */)
580 581
581 // Record a domain and registry of a url to a Rappor metric. 582 // Record a domain and registry of a url to a Rappor metric.
582 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, 583 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL,
583 std::string /* metric */, 584 std::string /* metric */,
584 GURL /* sample url */) 585 GURL /* sample url */)
OLDNEW
« no previous file with comments | « chrome/browser/metrics/field_trial_synchronizer.cc ('k') | chrome/renderer/chrome_render_thread_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698