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

Unified Diff: chrome/common/chrome_constants.cc

Issue 10386134: Record API fix adding FirstRun, and allowing repeat-count in capture (plus some browsertests along … (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Refined version with overlooked browsertest also fixed. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_constants.cc
diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc
index 3500fb8d264afa743c27a1c06669872e7058b168..a4fe135c7806421149b85b85ac897aed18e716fb 100644
--- a/chrome/common/chrome_constants.cc
+++ b/chrome/common/chrome_constants.cc
@@ -180,11 +180,13 @@ const FilePath::CharType kPepperFlashPluginFilename[] =
// knowing it. Enable in debug builds. Playback mode is allowed always,
// because it is useful for testing and not hazardous by itself.
#ifndef NDEBUG
-const bool kRecordModeEnabled = true;
+// const bool kRecordModeEnabled = true;
#else
-const bool kRecordModeEnabled = false;
+// const bool kRecordModeEnabled = false;
#endif
+const bool kRecordModeEnabled = true;
+
const int kHistogramSynchronizerReservedSequenceNumber = 0;
const char* const kUnknownLanguageCode = "und";

Powered by Google App Engine
This is Rietveld 408576698