OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ |
6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ | 6 #define CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "base/time.h" | 12 #include "base/time.h" |
13 #include "chrome/browser/ui/webui/html_dialog_ui.h" | 13 #include "chrome/browser/ui/webui/html_dialog_ui.h" |
14 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | 14 #include "chrome/common/net/gaia/gaia_auth_consumer.h" |
15 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" | 15 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" |
16 #include "chrome/common/net/gaia/google_service_auth_error.h" | 16 #include "chrome/common/net/gaia/google_service_auth_error.h" |
17 #include "grit/generated_resources.h" | 17 #include "grit/generated_resources.h" |
18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
19 #include "ui/gfx/native_widget_types.h" | 19 #include "ui/gfx/native_widget_types.h" |
20 | 20 |
21 class Browser; | |
22 class CloudPrintServiceProcessHelper; | 21 class CloudPrintServiceProcessHelper; |
23 class CloudPrintSetupMessageHandler; | 22 class CloudPrintSetupMessageHandler; |
24 class GaiaAuthFetcher; | 23 class GaiaAuthFetcher; |
25 class GoogleServiceAuthError; | 24 class GoogleServiceAuthError; |
26 class Profile; | 25 class Profile; |
27 class ServiceProcessControl; | 26 class ServiceProcessControl; |
28 | 27 |
29 namespace base { | 28 namespace base { |
30 class DictionaryValue; | 29 class DictionaryValue; |
31 } | 30 } |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 bool setup_done_; | 142 bool setup_done_; |
144 | 143 |
145 // Handle to the ServiceProcessControl which talks to the service process. | 144 // Handle to the ServiceProcessControl which talks to the service process. |
146 ServiceProcessControl* process_control_; | 145 ServiceProcessControl* process_control_; |
147 base::WeakPtr<Delegate> delegate_; | 146 base::WeakPtr<Delegate> delegate_; |
148 | 147 |
149 DISALLOW_COPY_AND_ASSIGN(CloudPrintSetupFlow); | 148 DISALLOW_COPY_AND_ASSIGN(CloudPrintSetupFlow); |
150 }; | 149 }; |
151 | 150 |
152 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ | 151 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ |
OLD | NEW |