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

Side by Side Diff: chrome/browser/chrome_to_mobile_service.h

Issue 10913089: Adjust ChromeToMobile error logging and mitigation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comment. Created 8 years, 3 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 | chrome/browser/chrome_to_mobile_service.cc » ('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) 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 #ifndef CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_
6 #define CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_ 6 #define CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 DEVICES_REQUESTED = 0, // Cloud print was contacted to list devices. 60 DEVICES_REQUESTED = 0, // Cloud print was contacted to list devices.
61 DEVICES_AVAILABLE, // Cloud print returned 1+ compatible devices. 61 DEVICES_AVAILABLE, // Cloud print returned 1+ compatible devices.
62 BUBBLE_SHOWN, // The page action bubble was shown. 62 BUBBLE_SHOWN, // The page action bubble was shown.
63 SNAPSHOT_GENERATED, // A snapshot was successfully generated. 63 SNAPSHOT_GENERATED, // A snapshot was successfully generated.
64 SNAPSHOT_ERROR, // An error occurred during snapshot generation. 64 SNAPSHOT_ERROR, // An error occurred during snapshot generation.
65 SENDING_URL, // Send was invoked (with or without a snapshot). 65 SENDING_URL, // Send was invoked (with or without a snapshot).
66 SENDING_SNAPSHOT, // A snapshot was sent along with the page URL. 66 SENDING_SNAPSHOT, // A snapshot was sent along with the page URL.
67 SEND_SUCCESS, // Cloud print responded with success on send. 67 SEND_SUCCESS, // Cloud print responded with success on send.
68 SEND_ERROR, // Cloud print responded with failure on send. 68 SEND_ERROR, // Cloud print responded with failure on send.
69 LEARN_MORE_CLICKED, // The "Learn more" help article link was clicked. 69 LEARN_MORE_CLICKED, // The "Learn more" help article link was clicked.
70 BAD_TOKEN, // The cloud print access token could not be minted.
71 BAD_SEARCH_AUTH, // The cloud print search request failed (auth).
72 BAD_SEARCH_OTHER, // The cloud print search request failed (other).
73 BAD_SEND_407, // The cloud print send response was errorCode==407.
74 // "Print job added but failed to notify printer..."
75 BAD_SEND_ERROR, // The cloud print send response was errorCode!=407.
76 BAD_SEND_AUTH, // The cloud print send request failed (auth).
77 BAD_SEND_OTHER, // The cloud print send request failed (other).
70 NUM_METRICS 78 NUM_METRICS
71 }; 79 };
72 80
73 // The supported mobile device operating systems. 81 // The supported mobile device operating systems.
74 enum MobileOS { 82 enum MobileOS {
75 ANDROID = 0, 83 ANDROID = 0,
76 IOS, 84 IOS,
77 }; 85 };
78 86
79 // The cloud print job types. 87 // The cloud print job types.
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 std::string access_token_; 224 std::string access_token_;
217 225
218 // The set of snapshots currently available. 226 // The set of snapshots currently available.
219 std::set<FilePath> snapshots_; 227 std::set<FilePath> snapshots_;
220 228
221 // Map URLFetchers to observers for reporting OnSendComplete. 229 // Map URLFetchers to observers for reporting OnSendComplete.
222 typedef std::map<const net::URLFetcher*, base::WeakPtr<Observer> > 230 typedef std::map<const net::URLFetcher*, base::WeakPtr<Observer> >
223 RequestObserverMap; 231 RequestObserverMap;
224 RequestObserverMap request_observer_map_; 232 RequestObserverMap request_observer_map_;
225 233
226 // The pending OAuth access token request and a timer for retrying on failure. 234 // The pending OAuth access token request and timers for retrying on failure.
227 scoped_ptr<OAuth2AccessTokenFetcher> access_token_fetcher_; 235 scoped_ptr<OAuth2AccessTokenFetcher> access_token_fetcher_;
228 base::OneShotTimer<ChromeToMobileService> auth_retry_timer_; 236 base::OneShotTimer<ChromeToMobileService> auth_retry_timer_;
237 base::OneShotTimer<ChromeToMobileService> search_retry_timer_;
229 238
230 // A queue of tasks to perform after an access token is lazily initialized. 239 // A queue of tasks to perform after an access token is lazily initialized.
231 std::queue<base::Closure> task_queue_; 240 std::queue<base::Closure> task_queue_;
232 241
233 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileService); 242 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileService);
234 }; 243 };
235 244
236 #endif // CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_ 245 #endif // CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_to_mobile_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698