OLD | NEW |
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 DEVICES_REQUESTED = 0, // Cloud print was contacted to list devices. | 61 DEVICES_REQUESTED = 0, // Cloud print was contacted to list devices. |
62 DEVICES_AVAILABLE, // Cloud print returned 1+ compatible devices. | 62 DEVICES_AVAILABLE, // Cloud print returned 1+ compatible devices. |
63 BUBBLE_SHOWN, // The page action bubble was shown. | 63 BUBBLE_SHOWN, // The page action bubble was shown. |
64 SNAPSHOT_GENERATED, // A snapshot was successfully generated. | 64 SNAPSHOT_GENERATED, // A snapshot was successfully generated. |
65 SNAPSHOT_ERROR, // An error occurred during snapshot generation. | 65 SNAPSHOT_ERROR, // An error occurred during snapshot generation. |
66 SENDING_URL, // Send was invoked (with or without a snapshot). | 66 SENDING_URL, // Send was invoked (with or without a snapshot). |
67 SENDING_SNAPSHOT, // A snapshot was sent along with the page URL. | 67 SENDING_SNAPSHOT, // A snapshot was sent along with the page URL. |
68 SEND_SUCCESS, // Cloud print responded with success on send. | 68 SEND_SUCCESS, // Cloud print responded with success on send. |
69 SEND_ERROR, // Cloud print responded with failure on send. | 69 SEND_ERROR, // Cloud print responded with failure on send. |
70 LEARN_MORE_CLICKED, // The "Learn more" help article link was clicked. | 70 LEARN_MORE_CLICKED, // The "Learn more" help article link was clicked. |
| 71 BAD_TOKEN, // The cloud print access token could not be minted. |
| 72 BAD_SEARCH_AUTH, // The cloud print search request failed (auth). |
| 73 BAD_SEARCH_OTHER, // The cloud print search request failed (other). |
| 74 BAD_SEND_407, // The cloud print send response was errorCode==407. |
| 75 // "Print job added but failed to notify printer..." |
| 76 BAD_SEND_ERROR, // The cloud print send response was errorCode!=407. |
| 77 BAD_SEND_AUTH, // The cloud print send request failed (auth). |
| 78 BAD_SEND_OTHER, // The cloud print send request failed (other). |
71 NUM_METRICS | 79 NUM_METRICS |
72 }; | 80 }; |
73 | 81 |
74 // The supported mobile device operating systems. | 82 // The supported mobile device operating systems. |
75 enum MobileOS { | 83 enum MobileOS { |
76 ANDROID = 0, | 84 ANDROID = 0, |
77 IOS, | 85 IOS, |
78 }; | 86 }; |
79 | 87 |
80 // The cloud print job types. | 88 // The cloud print job types. |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 std::set<FilePath> snapshots_; | 227 std::set<FilePath> snapshots_; |
220 | 228 |
221 // The list of active URLFetcher requests owned by the service. | 229 // The list of active URLFetcher requests owned by the service. |
222 ScopedVector<net::URLFetcher> url_fetchers_; | 230 ScopedVector<net::URLFetcher> url_fetchers_; |
223 | 231 |
224 // Map URLFetchers to observers for reporting OnSendComplete. | 232 // Map URLFetchers to observers for reporting OnSendComplete. |
225 typedef std::map<const net::URLFetcher*, base::WeakPtr<Observer> > | 233 typedef std::map<const net::URLFetcher*, base::WeakPtr<Observer> > |
226 RequestObserverMap; | 234 RequestObserverMap; |
227 RequestObserverMap request_observer_map_; | 235 RequestObserverMap request_observer_map_; |
228 | 236 |
229 // The pending OAuth access token request and a timer for retrying on failure. | 237 // The pending OAuth access token request and timers for retrying on failure. |
230 scoped_ptr<OAuth2AccessTokenFetcher> access_token_fetcher_; | 238 scoped_ptr<OAuth2AccessTokenFetcher> access_token_fetcher_; |
231 base::OneShotTimer<ChromeToMobileService> auth_retry_timer_; | 239 base::OneShotTimer<ChromeToMobileService> auth_retry_timer_; |
| 240 base::OneShotTimer<ChromeToMobileService> search_retry_timer_; |
232 | 241 |
233 // A queue of tasks to perform after an access token is lazily initialized. | 242 // A queue of tasks to perform after an access token is lazily initialized. |
234 std::queue<base::Closure> task_queue_; | 243 std::queue<base::Closure> task_queue_; |
235 | 244 |
236 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileService); | 245 DISALLOW_COPY_AND_ASSIGN(ChromeToMobileService); |
237 }; | 246 }; |
238 | 247 |
239 #endif // CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_ | 248 #endif // CHROME_BROWSER_CHROME_TO_MOBILE_SERVICE_H_ |
OLD | NEW |