Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Side by Side Diff: chrome/browser/ui/webui/options/personal_options_handler.h

Issue 7400032: Multi-profile WebUI settings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Notify when deleting profile from cache Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698