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

Unified Diff: chrome/common/child_process_logging.h

Issue 10890015: [Linux] Add field trial tuples to breakpad crash reports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/breakpad_linux.cc ('k') | chrome/common/child_process_logging_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/child_process_logging.h
===================================================================
--- chrome/common/child_process_logging.h (revision 153910)
+++ chrome/common/child_process_logging.h (working copy)
@@ -23,12 +23,12 @@
// The maximum number of active extensions we will report.
// Also used in chrome/app, but we define it here to avoid a common->app
// dependency.
-static const int kMaxReportedActiveExtensions = 10;
+static const size_t kMaxReportedActiveExtensions = 10;
// The maximum number of variation chunks we will report.
// Also used in chrome/app, but we define it here to avoid a common->app
// dependency.
-static const int kMaxReportedVariationChunks = 15;
+static const size_t kMaxReportedVariationChunks = 15;
// The maximum size of a variation chunk. This size was picked to be
// consistent between platforms and the value was chosen from the Windows
@@ -61,9 +61,11 @@
extern char g_gpu_vs_ver[];
extern char g_num_extensions[];
extern char g_num_switches[];
+extern char g_num_variations[];
extern char g_num_views[];
extern char g_printer_info[];
extern char g_switches[];
+extern char g_variation_chunks[];
// Assume IDs are 32 bytes long.
static const size_t kExtensionLen = 32;
« no previous file with comments | « chrome/app/breakpad_linux.cc ('k') | chrome/common/child_process_logging_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698