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

Side by Side Diff: chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc

Issue 11236040: [Sync] Disable unrecoverable error uploading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | no next file » | 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 #include "chrome/browser/sync/glue/chrome_report_unrecoverable_error.h" 5 #include "chrome/browser/sync/glue/chrome_report_unrecoverable_error.h"
6 6
7 #include "base/rand_util.h" 7 #include "base/rand_util.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
11 #include <windows.h> 11 #include <windows.h>
12 #endif 12 #endif
13 13
14 #include "chrome/common/chrome_constants.h" 14 #include "chrome/common/chrome_constants.h"
15 15
16 namespace browser_sync { 16 namespace browser_sync {
17 17
18 static const double kErrorUploadRatio = 0.15; 18 static const double kErrorUploadRatio = 0.0;
19 void ChromeReportUnrecoverableError() { 19 void ChromeReportUnrecoverableError() {
20 // TODO(lipalani): Add this for other platforms as well. 20 // TODO(lipalani): Add this for other platforms as well.
21 #if defined(OS_WIN) 21 #if defined(OS_WIN)
22 // We only want to upload |kErrorUploadRatio| ratio of errors. 22 // We only want to upload |kErrorUploadRatio| ratio of errors.
23 if (kErrorUploadRatio <= 0.0) 23 if (kErrorUploadRatio <= 0.0)
24 return; // We are not allowed to upload errors. 24 return; // We are not allowed to upload errors.
25 double random_number = base::RandDouble(); 25 double random_number = base::RandDouble();
26 if (random_number > kErrorUploadRatio) 26 if (random_number > kErrorUploadRatio)
27 return; 27 return;
28 28
29 // Get the breakpad pointer from chrome.exe 29 // Get the breakpad pointer from chrome.exe
30 typedef void (__cdecl *DumpProcessFunction)(); 30 typedef void (__cdecl *DumpProcessFunction)();
31 DumpProcessFunction DumpProcess = reinterpret_cast<DumpProcessFunction>( 31 DumpProcessFunction DumpProcess = reinterpret_cast<DumpProcessFunction>(
32 ::GetProcAddress(::GetModuleHandle( 32 ::GetProcAddress(::GetModuleHandle(
33 chrome::kBrowserProcessExecutableName), 33 chrome::kBrowserProcessExecutableName),
34 "DumpProcessWithoutCrash")); 34 "DumpProcessWithoutCrash"));
35 if (DumpProcess) 35 if (DumpProcess)
36 DumpProcess(); 36 DumpProcess();
37 #endif // OS_WIN 37 #endif // OS_WIN
38 38
39 } 39 }
40 40
41 } // namespace browser_sync 41 } // namespace browser_sync
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698