OLD | NEW |
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_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/time.h" | 11 #include "base/time.h" |
12 #include "chrome/browser/dom_ui/html_dialog_ui.h" | 12 #include "chrome/browser/dom_ui/html_dialog_ui.h" |
13 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | 13 #include "chrome/common/net/gaia/gaia_auth_consumer.h" |
14 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" | 14 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" |
15 #include "gfx/native_widget_types.h" | |
16 #include "grit/generated_resources.h" | 15 #include "grit/generated_resources.h" |
17 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
| 17 #include "ui/gfx/native_widget_types.h" |
18 | 18 |
19 class GaiaAuthFetcher; | 19 class GaiaAuthFetcher; |
20 class CloudPrintServiceProcessHelper; | 20 class CloudPrintServiceProcessHelper; |
21 class CloudPrintSetupMessageHandler; | 21 class CloudPrintSetupMessageHandler; |
22 class ServiceProcessControl; | 22 class ServiceProcessControl; |
23 class GoogleServiceAuthError; | 23 class GoogleServiceAuthError; |
24 class Browser; | 24 class Browser; |
25 | 25 |
26 // This class is responsible for showing a cloud print setup dialog | 26 // This class is responsible for showing a cloud print setup dialog |
27 // and perform operations to fill the content of the dialog and handle | 27 // and perform operations to fill the content of the dialog and handle |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 bool setup_done_; | 127 bool setup_done_; |
128 | 128 |
129 // Handle to the ServiceProcessControl which talks to the service process. | 129 // Handle to the ServiceProcessControl which talks to the service process. |
130 ServiceProcessControl* process_control_; | 130 ServiceProcessControl* process_control_; |
131 Delegate* delegate_; | 131 Delegate* delegate_; |
132 | 132 |
133 DISALLOW_COPY_AND_ASSIGN(CloudPrintSetupFlow); | 133 DISALLOW_COPY_AND_ASSIGN(CloudPrintSetupFlow); |
134 }; | 134 }; |
135 | 135 |
136 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ | 136 #endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_CLOUD_PRINT_SETUP_FLOW_H_ |
OLD | NEW |