OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_PROFILES_PROFILE_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ |
6 #define CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "chrome/browser/profiles/profile_metrics.h" | 9 #include "chrome/browser/profiles/profile_metrics.h" |
10 #include "chrome/browser/ui/browser_window.h" | 10 #include "chrome/browser/ui/browser_window.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
85 void ShowUserManagerMaybeWithTutorial(Profile* profile); | 85 void ShowUserManagerMaybeWithTutorial(Profile* profile); |
86 | 86 |
87 // Enables new profile management preview and shows the user manager tutorial. | 87 // Enables new profile management preview and shows the user manager tutorial. |
88 void EnableNewProfileManagementPreview(Profile* profile); | 88 void EnableNewProfileManagementPreview(Profile* profile); |
89 | 89 |
90 // Disables new profile management preview and attempts to relaunch Chrome. | 90 // Disables new profile management preview and attempts to relaunch Chrome. |
91 void DisableNewProfileManagementPreview(Profile* profile); | 91 void DisableNewProfileManagementPreview(Profile* profile); |
92 | 92 |
93 // Converts from modes in the avatar menu to modes understood by | 93 // Converts from modes in the avatar menu to modes understood by |
94 // ProfileChooserView. | 94 // ProfileChooserView. |
95 BubbleViewMode BubbleViewModeFromAvatarBubbleMode( | 95 void BubbleViewModeFromAvatarBubbleMode( |
96 BrowserWindow::AvatarBubbleMode mode); | 96 BrowserWindow::AvatarBubbleMode mode, |
97 BubbleViewMode& bubble_view_mode, | |
98 TutorialMode& tutorial_mode); | |
Roger Tawa OOO till Jul 10th
2014/08/14 21:54:09
Output args should be pointers.
guohui
2014/08/15 15:42:39
Done.
| |
97 | 99 |
98 } // namespace profiles | 100 } // namespace profiles |
99 | 101 |
100 #endif // CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ | 102 #endif // CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ |
OLD | NEW |