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

Side by Side Diff: chrome_frame/metrics_service.cc

Issue 5276007: Implement exponential back-off mechanism. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pull latest to merge Created 10 years 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 | « chrome/service/cloud_print/printer_job_handler.cc ('k') | net/base/net_error_list.h » ('j') | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 5
6 //------------------------------------------------------------------------------ 6 //------------------------------------------------------------------------------
7 // Description of the life cycle of a instance of MetricsService. 7 // Description of the life cycle of a instance of MetricsService.
8 // 8 //
9 // OVERVIEW 9 // OVERVIEW
10 // 10 //
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "base/file_version_info.h" 56 #include "base/file_version_info.h"
57 #include "base/lock.h" 57 #include "base/lock.h"
58 #include "base/string_split.h" 58 #include "base/string_split.h"
59 #include "base/string_util.h" 59 #include "base/string_util.h"
60 #include "base/stringprintf.h" 60 #include "base/stringprintf.h"
61 #include "base/thread.h" 61 #include "base/thread.h"
62 #include "base/string_number_conversions.h" 62 #include "base/string_number_conversions.h"
63 #include "base/utf_string_conversions.h" 63 #include "base/utf_string_conversions.h"
64 #include "chrome/common/chrome_version_info.h" 64 #include "chrome/common/chrome_version_info.h"
65 #include "chrome/common/net/url_fetcher.h" 65 #include "chrome/common/net/url_fetcher.h"
66 #include "chrome/common/net/url_fetcher_protect.h"
67 #include "chrome/common/net/url_request_context_getter.h" 66 #include "chrome/common/net/url_request_context_getter.h"
68 #include "chrome/installer/util/browser_distribution.h" 67 #include "chrome/installer/util/browser_distribution.h"
69 #include "chrome/installer/util/chrome_frame_distribution.h" 68 #include "chrome/installer/util/chrome_frame_distribution.h"
70 #include "chrome/installer/util/google_update_settings.h" 69 #include "chrome/installer/util/google_update_settings.h"
71 #include "chrome_frame/bind_status_callback_impl.h" 70 #include "chrome_frame/bind_status_callback_impl.h"
72 #include "chrome_frame/chrome_frame_delegate.h" 71 #include "chrome_frame/chrome_frame_delegate.h"
73 #include "chrome_frame/crash_reporting/crash_metrics.h" 72 #include "chrome_frame/crash_reporting/crash_metrics.h"
74 #include "chrome_frame/html_utils.h" 73 #include "chrome_frame/html_utils.h"
75 #include "chrome_frame/http_negotiate.h" 74 #include "chrome_frame/http_negotiate.h"
76 #include "chrome_frame/utils.h" 75 #include "chrome_frame/utils.h"
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 version += "-F"; 598 version += "-F";
600 if (!version_info.IsOfficialBuild()) 599 if (!version_info.IsOfficialBuild())
601 version.append("-devel"); 600 version.append("-devel");
602 return version; 601 return version;
603 } else { 602 } else {
604 NOTREACHED() << "Unable to retrieve version string."; 603 NOTREACHED() << "Unable to retrieve version string.";
605 } 604 }
606 605
607 return std::string(); 606 return std::string();
608 } 607 }
OLDNEW
« no previous file with comments | « chrome/service/cloud_print/printer_job_handler.cc ('k') | net/base/net_error_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698