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

Side by Side Diff: chrome/service/cloud_print/cloud_print_consts.h

Issue 4194001: Implement exponential back-off mechanism and enforce it at the URLRequestHttpJob level. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
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 #ifndef CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_
6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ 6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 10
(...skipping 18 matching lines...) Expand all
29 extern const char kPrinterCapsHashValue[]; 29 extern const char kPrinterCapsHashValue[];
30 extern const char kPrinterTagsValue[]; 30 extern const char kPrinterTagsValue[];
31 extern const char kProxyTagPrefix[]; 31 extern const char kProxyTagPrefix[];
32 extern const char kTagsHashTagName[]; 32 extern const char kTagsHashTagName[];
33 extern const char kDefaultCloudPrintServerUrl[]; 33 extern const char kDefaultCloudPrintServerUrl[];
34 extern const char kGaiaUrl[]; 34 extern const char kGaiaUrl[];
35 extern const char kCloudPrintGaiaServiceId[]; 35 extern const char kCloudPrintGaiaServiceId[];
36 extern const char kSyncGaiaServiceId[]; 36 extern const char kSyncGaiaServiceId[];
37 extern const char kCloudPrintPushNotificationsSource[]; 37 extern const char kCloudPrintPushNotificationsSource[];
38 extern const char kChromeCloudPrintProxyHeader[]; 38 extern const char kChromeCloudPrintProxyHeader[];
39 extern const char kCloudPrintAPIRetryPolicy[];
40 extern const char kJobDataRetryPolicy[];
41 extern const char kCloudPrintUserAgent[]; 39 extern const char kCloudPrintUserAgent[];
42 40
43 // Max retry count for job data fetch requests. 41 // Max retry count for job data fetch requests.
44 const int kJobDataMaxRetryCount = 5; 42 const int kJobDataMaxRetryCount = 5;
45 // Look at CloudPrintProxyBackend::Core::CreateDefaultRetryPolicy for default 43 // Max retry count (infinity) for API fetch requests.
46 // values of the request retry policy. 44 const int kCloudPrintAPIMaxRetryCount = -1;
47 45
48 // When we don't have XMPP notifications available, we resort to polling for 46 // When we don't have XMPP notifications available, we resort to polling for
49 // print jobs. We choose a random interval in seconds between these 2 values. 47 // print jobs. We choose a random interval in seconds between these 2 values.
50 const int kMinJobPollIntervalSecs = 5*60; // 5 minutes in seconds 48 const int kMinJobPollIntervalSecs = 5*60; // 5 minutes in seconds
51 const int kMaxJobPollIntervalSecs = 8*60; // 8 minutes in seconds 49 const int kMaxJobPollIntervalSecs = 8*60; // 8 minutes in seconds
52 50
53 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ 51 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_
54 52
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698