| 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_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include <string> |
| 9 #include "googleurl/src/gurl.h" | 9 |
| 10 #include "net/base/cert_database.h" | |
| 11 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
| 12 #include "ui/views/window/dialog_delegate.h" | 11 #include "ui/views/window/dialog_delegate.h" |
| 13 | 12 |
| 14 class Profile; | 13 class Profile; |
| 15 | 14 |
| 16 namespace chromeos { | 15 namespace chromeos { |
| 17 | 16 |
| 18 class EnrollmentDelegate; | 17 class EnrollmentDelegate; |
| 19 | 18 |
| 20 EnrollmentDelegate* CreateEnrollmentDelegate(gfx::NativeWindow owning_window, | 19 EnrollmentDelegate* CreateEnrollmentDelegate(gfx::NativeWindow owning_window, |
| 21 const std::string& network_name, | 20 const std::string& network_name, |
| 22 Profile* profile); | 21 Profile* profile); |
| 23 | 22 |
| 24 } // namespace chromeos | 23 } // namespace chromeos |
| 25 | 24 |
| 26 #endif // CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ | 25 #endif // CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ |
| OLD | NEW |