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

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

Issue 10909115: Revert 155317 - Adjust ChromeToMobile error logging and mitigation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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).
78 NUM_METRICS 70 NUM_METRICS
79 }; 71 };
80 72
81 // The supported mobile device operating systems. 73 // The supported mobile device operating systems.
82 enum MobileOS { 74 enum MobileOS {
83 ANDROID = 0, 75 ANDROID = 0,
84 IOS, 76 IOS,
85 }; 77 };
86 78
87 // The cloud print job types. 79 // The cloud print job types.
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 std::string access_token_; 216 std::string access_token_;
225 217
226 // The set of snapshots currently available. 218 // The set of snapshots currently available.
227 std::set<FilePath> snapshots_; 219 std::set<FilePath> snapshots_;
228 220
229 // Map URLFetchers to observers for reporting OnSendComplete. 221 // Map URLFetchers to observers for reporting OnSendComplete.
230 typedef std::map<const net::URLFetcher*, base::WeakPtr<Observer> > 222 typedef std::map<const net::URLFetcher*, base::WeakPtr<Observer> >
231 RequestObserverMap; 223 RequestObserverMap;
232 RequestObserverMap request_observer_map_; 224 RequestObserverMap request_observer_map_;
233 225
234 // The pending OAuth access token request and timers for retrying on failure. 226 // The pending OAuth access token request and a timer for retrying on failure.
235 scoped_ptr<OAuth2AccessTokenFetcher> access_token_fetcher_; 227 scoped_ptr<OAuth2AccessTokenFetcher> access_token_fetcher_;
236 base::OneShotTimer<ChromeToMobileService> auth_retry_timer_; 228 base::OneShotTimer<ChromeToMobileService> auth_retry_timer_;
237 base::OneShotTimer<ChromeToMobileService> search_retry_timer_;
238 229
239 // A queue of tasks to perform after an access token is lazily initialized. 230 // A queue of tasks to perform after an access token is lazily initialized.
240 std::queue<base::Closure> task_queue_; 231 std::queue<base::Closure> task_queue_;
241 232
242 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileService); 233 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileService);
243 }; 234 };
244 235
245 #endif // CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_ 236 #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