Index: chrome/browser/ui/webui/options/personal_options_handler.h |
diff --git a/chrome/browser/ui/webui/options/personal_options_handler.h b/chrome/browser/ui/webui/options/personal_options_handler.h |
index 7f23fbc72ffae27eefd32de0621df58904bd9be1..a2cfe0b043b3690e9799c7626d176f0e1b4f0fae 100644 |
--- a/chrome/browser/ui/webui/options/personal_options_handler.h |
+++ b/chrome/browser/ui/webui/options/personal_options_handler.h |
@@ -53,6 +53,20 @@ class PersonalOptionsHandler : public OptionsPageUIHandler, |
NotificationRegistrar registrar_; |
#endif |
+ // Sends an array of Profile objects to javascript. |
+ // Each object is of the form: |
+ // profileInfo = { |
+ // name: "Profile Name", |
+ // iconURL: "chrome://path/to/icon/image", |
+ // filePath: "/path/to/profile/data/on/disk", |
+ // isCurrentProfile: false |
+ // }; |
+ void SendProfilesInfo(); |
+ |
+ // Asynchronously opens a new browser window to create a new profile. |
+ // |args| is not used. |
+ void CreateProfile(const ListValue* args); |
+ |
// True if the multiprofiles switch is enabled. |
bool multiprofile_; |