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_PRINT_DIALOG_CLOUD_INTERNAL_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_PRINT_DIALOG_CLOUD_INTERNAL_H_ |
6 #define CHROME_BROWSER_PRINTING_PRINT_DIALOG_CLOUD_INTERNAL_H_ | 6 #define CHROME_BROWSER_PRINTING_PRINT_DIALOG_CLOUD_INTERNAL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
15 #include "chrome/browser/dom_ui/html_dialog_ui.h" | 15 #include "chrome/browser/webui/html_dialog_ui.h" |
16 #include "chrome/browser/webui/web_ui.h" | 16 #include "chrome/browser/webui/web_ui.h" |
17 #include "chrome/common/notification_observer.h" | 17 #include "chrome/common/notification_observer.h" |
18 #include "chrome/common/notification_registrar.h" | 18 #include "chrome/common/notification_registrar.h" |
19 | 19 |
20 class GURL; | 20 class GURL; |
21 class StringValue; | 21 class StringValue; |
22 class CloudPrintHtmlDialogDelegateTest; | 22 class CloudPrintHtmlDialogDelegateTest; |
23 | 23 |
24 namespace internal_cloud_print_helpers { | 24 namespace internal_cloud_print_helpers { |
25 | 25 |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 170 |
171 // The parameters needed to display a modal HTML dialog. | 171 // The parameters needed to display a modal HTML dialog. |
172 HtmlDialogUI::HtmlDialogParams params_; | 172 HtmlDialogUI::HtmlDialogParams params_; |
173 | 173 |
174 DISALLOW_COPY_AND_ASSIGN(CloudPrintHtmlDialogDelegate); | 174 DISALLOW_COPY_AND_ASSIGN(CloudPrintHtmlDialogDelegate); |
175 }; | 175 }; |
176 | 176 |
177 } // namespace internal_cloud_print_helpers | 177 } // namespace internal_cloud_print_helpers |
178 | 178 |
179 #endif // CHROME_BROWSER_PRINTING_PRINT_DIALOG_CLOUD_INTERNAL_H_ | 179 #endif // CHROME_BROWSER_PRINTING_PRINT_DIALOG_CLOUD_INTERNAL_H_ |
OLD | NEW |