| 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_LOGIN_HELP_APP_LAUNCHER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_HELP_APP_LAUNCHER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_HELP_APP_LAUNCHER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_HELP_APP_LAUNCHER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // IDs of help topics available from HelpApp. | 25 // IDs of help topics available from HelpApp. |
| 26 enum HelpTopic { | 26 enum HelpTopic { |
| 27 // Showed on basic connectivity issues. | 27 // Showed on basic connectivity issues. |
| 28 HELP_CONNECTIVITY = 188752, | 28 HELP_CONNECTIVITY = 188752, |
| 29 // Showed at EULA screen as "Learn more" about stats/crash reports. | 29 // Showed at EULA screen as "Learn more" about stats/crash reports. |
| 30 HELP_STATS_USAGE = 183078, | 30 HELP_STATS_USAGE = 183078, |
| 31 // Showed whenever there're troubles signing in. | 31 // Showed whenever there're troubles signing in. |
| 32 HELP_CANT_ACCESS_ACCOUNT = 188036, | 32 HELP_CANT_ACCESS_ACCOUNT = 188036, |
| 33 // Showed in case when account was disabled. | 33 // Showed in case when account was disabled. |
| 34 HELP_ACCOUNT_DISABLED = 188756, | 34 HELP_ACCOUNT_DISABLED = 188756, |
| 35 // Showed in case when hosted account is used. | |
| 36 HELP_HOSTED_ACCOUNT = 1054228, | |
| 37 // Showed as "Learn more" about enterprise enrolled devices. | 35 // Showed as "Learn more" about enterprise enrolled devices. |
| 38 HELP_ENTERPRISE = 2535613, | 36 HELP_ENTERPRISE = 2535613, |
| 39 // Shown at reset screen as "Learn more" about powerwash/rollback options. | 37 // Shown at reset screen as "Learn more" about powerwash/rollback options. |
| 40 HELP_POWERWASH = 183084, | 38 HELP_POWERWASH = 183084, |
| 41 // Shown as "Learn more" about the device attributes. | 39 // Shown as "Learn more" about the device attributes. |
| 42 HELP_DEVICE_ATTRIBUTES = 6218780, | 40 HELP_DEVICE_ATTRIBUTES = 6218780, |
| 43 }; | 41 }; |
| 44 | 42 |
| 45 // Parent window is used to show dialog. | 43 // Parent window is used to show dialog. |
| 46 explicit HelpAppLauncher(gfx::NativeWindow parent_window); | 44 explicit HelpAppLauncher(gfx::NativeWindow parent_window); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 59 | 57 |
| 60 // Parent window which is passed to help dialog. | 58 // Parent window which is passed to help dialog. |
| 61 gfx::NativeWindow parent_window_; | 59 gfx::NativeWindow parent_window_; |
| 62 | 60 |
| 63 DISALLOW_COPY_AND_ASSIGN(HelpAppLauncher); | 61 DISALLOW_COPY_AND_ASSIGN(HelpAppLauncher); |
| 64 }; | 62 }; |
| 65 | 63 |
| 66 } // namespace chromeos | 64 } // namespace chromeos |
| 67 | 65 |
| 68 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_HELP_APP_LAUNCHER_H_ | 66 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_HELP_APP_LAUNCHER_H_ |
| OLD | NEW |