[email protected] | c1a9b64 | 2012-03-30 22:49:45 | [diff] [blame] | 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 | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #ifndef CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ | ||||
6 | #define CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ | ||||
[email protected] | c1a9b64 | 2012-03-30 22:49:45 | [diff] [blame] | 7 | |
[email protected] | 7fda9a40 | 2012-09-10 14:11:07 | [diff] [blame] | 8 | #include <string> |
[email protected] | b4003ac | 2013-08-09 04:10:05 | [diff] [blame] | 9 | #include <vector> |
[email protected] | 7fda9a40 | 2012-09-10 14:11:07 | [diff] [blame] | 10 | |
[email protected] | b4003ac | 2013-08-09 04:10:05 | [diff] [blame] | 11 | #include "base/callback_forward.h" |
[email protected] | c1a9b64 | 2012-03-30 22:49:45 | [diff] [blame] | 12 | #include "ui/gfx/native_widget_types.h" |
[email protected] | c1a9b64 | 2012-03-30 22:49:45 | [diff] [blame] | 13 | |
[email protected] | 6ad6164 | 2012-05-03 03:13:51 | [diff] [blame] | 14 | class Profile; |
15 | |||||
[email protected] | c1a9b64 | 2012-03-30 22:49:45 | [diff] [blame] | 16 | namespace chromeos { |
[email protected] | d572da7 | 2013-10-02 19:45:15 | [diff] [blame] | 17 | namespace enrollment { |
[email protected] | c1a9b64 | 2012-03-30 22:49:45 | [diff] [blame] | 18 | |
[email protected] | d572da7 | 2013-10-02 19:45:15 | [diff] [blame] | 19 | // Returns true if a dialog was successfully created. |
20 | bool CreateDialog(const std::string& service_path, | ||||
21 | gfx::NativeWindow owning_window); | ||||
[email protected] | b4003ac | 2013-08-09 04:10:05 | [diff] [blame] | 22 | |
[email protected] | d572da7 | 2013-10-02 19:45:15 | [diff] [blame] | 23 | } // namespace enrollment |
[email protected] | c1a9b64 | 2012-03-30 22:49:45 | [diff] [blame] | 24 | } // namespace chromeos |
25 | |||||
26 | #endif // CHROME_BROWSER_CHROMEOS_ENROLLMENT_DIALOG_VIEW_H_ |