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_BROWSER_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" | 9 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" |
10 #include "chrome/browser/prefs/pref_change_registrar.h" | 10 #include "chrome/browser/prefs/pref_change_registrar.h" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 void RequestAutocompleteSuggestions(const ListValue* args); | 87 void RequestAutocompleteSuggestions(const ListValue* args); |
88 | 88 |
89 // Called when the 'Always show the bookmarks bar' checkbox is toggled. | 89 // Called when the 'Always show the bookmarks bar' checkbox is toggled. |
90 // Notifies any listeners interested in this event. |args| is ignored. | 90 // Notifies any listeners interested in this event. |args| is ignored. |
91 void ToggleShowBookmarksBar(const ListValue* args); | 91 void ToggleShowBookmarksBar(const ListValue* args); |
92 | 92 |
93 // Enables/disables Instant. | 93 // Enables/disables Instant. |
94 void EnableInstant(const ListValue* args); | 94 void EnableInstant(const ListValue* args); |
95 void DisableInstant(const ListValue* args); | 95 void DisableInstant(const ListValue* args); |
96 | 96 |
| 97 // Called to request information about the Instant field trial. |
| 98 void GetInstantFieldTrialStatus(const ListValue* args); |
| 99 |
97 // Returns the string ID for the given default browser state. | 100 // Returns the string ID for the given default browser state. |
98 int StatusStringIdForState(ShellIntegration::DefaultWebClientState state); | 101 int StatusStringIdForState(ShellIntegration::DefaultWebClientState state); |
99 | 102 |
100 // Gets the current default browser state, and asynchronously reports it to | 103 // Gets the current default browser state, and asynchronously reports it to |
101 // the WebUI page. | 104 // the WebUI page. |
102 void UpdateDefaultBrowserState(); | 105 void UpdateDefaultBrowserState(); |
103 | 106 |
104 // Updates the UI with the given state for the default browser. | 107 // Updates the UI with the given state for the default browser. |
105 void SetDefaultBrowserUIString(int status_string_id); | 108 void SetDefaultBrowserUIString(int status_string_id); |
106 | 109 |
(...skipping 22 matching lines...) Expand all Loading... |
129 // CustomHomePagesTableModel, consider changing it to something more like | 132 // CustomHomePagesTableModel, consider changing it to something more like |
130 // TemplateURLService. | 133 // TemplateURLService. |
131 scoped_ptr<CustomHomePagesTableModel> startup_custom_pages_table_model_; | 134 scoped_ptr<CustomHomePagesTableModel> startup_custom_pages_table_model_; |
132 | 135 |
133 scoped_ptr<AutocompleteController> autocomplete_controller_; | 136 scoped_ptr<AutocompleteController> autocomplete_controller_; |
134 | 137 |
135 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); | 138 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); |
136 }; | 139 }; |
137 | 140 |
138 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ | 141 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
OLD | NEW |