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_UI_WEBUI_OPTIONS_PERSONAL_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_PERSONAL_OPTIONS_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_PERSONAL_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_PERSONAL_OPTIONS_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "chrome/browser/browser_signin.h" | 10 #include "chrome/browser/browser_signin.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
46 void ThemesReset(const ListValue* args); | 46 void ThemesReset(const ListValue* args); |
47 #if defined(TOOLKIT_GTK) | 47 #if defined(TOOLKIT_GTK) |
48 void ThemesSetGTK(const ListValue* args); | 48 void ThemesSetGTK(const ListValue* args); |
49 #endif | 49 #endif |
50 | 50 |
51 #if defined(OS_CHROMEOS) | 51 #if defined(OS_CHROMEOS) |
52 void LoadAccountPicture(const ListValue* args); | 52 void LoadAccountPicture(const ListValue* args); |
53 NotificationRegistrar registrar_; | 53 NotificationRegistrar registrar_; |
54 #endif | 54 #endif |
55 | 55 |
56 void SendProfilesInfo(); | |
James Hawkins
2011/07/19 20:22:09
Document these methods.
| |
57 void ProfilesCreate(const ListValue* args); | |
58 | |
56 // True if the multiprofiles switch is enabled. | 59 // True if the multiprofiles switch is enabled. |
57 bool multiprofile_; | 60 bool multiprofile_; |
58 | 61 |
59 DISALLOW_COPY_AND_ASSIGN(PersonalOptionsHandler); | 62 DISALLOW_COPY_AND_ASSIGN(PersonalOptionsHandler); |
60 }; | 63 }; |
61 | 64 |
62 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PERSONAL_OPTIONS_HANDLER_H_ | 65 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_PERSONAL_OPTIONS_HANDLER_H_ |
OLD | NEW |