| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 | 332 |
| 333 // Setup the page zoom selector control. | 333 // Setup the page zoom selector control. |
| 334 void SetupPageZoomSelector(); | 334 void SetupPageZoomSelector(); |
| 335 | 335 |
| 336 // Setup the visibility of the reset button. | 336 // Setup the visibility of the reset button. |
| 337 void SetupAutoOpenFileTypes(); | 337 void SetupAutoOpenFileTypes(); |
| 338 | 338 |
| 339 // Setup the proxy settings section UI. | 339 // Setup the proxy settings section UI. |
| 340 void SetupProxySettingsSection(); | 340 void SetupProxySettingsSection(); |
| 341 | 341 |
| 342 // Setup the manage certificates section UI. | |
| 343 void SetupManageCertificatesSection(); | |
| 344 | |
| 345 // Setup the UI specific to managing supervised users. | 342 // Setup the UI specific to managing supervised users. |
| 346 void SetupManagingSupervisedUsers(); | 343 void SetupManagingSupervisedUsers(); |
| 347 | 344 |
| 348 // Setup the UI for Easy Unlock. | 345 // Setup the UI for Easy Unlock. |
| 349 void SetupEasyUnlock(); | 346 void SetupEasyUnlock(); |
| 350 | 347 |
| 351 // Setup the UI for showing which settings are extension controlled. | 348 // Setup the UI for showing which settings are extension controlled. |
| 352 void SetupExtensionControlledIndicators(); | 349 void SetupExtensionControlledIndicators(); |
| 353 | 350 |
| 354 // Setup the value and the disabled property for metrics reporting for (except | 351 // Setup the value and the disabled property for metrics reporting for (except |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 | 409 |
| 413 // Used to get WeakPtr to self for use on the UI thread. | 410 // Used to get WeakPtr to self for use on the UI thread. |
| 414 base::WeakPtrFactory<BrowserOptionsHandler> weak_ptr_factory_; | 411 base::WeakPtrFactory<BrowserOptionsHandler> weak_ptr_factory_; |
| 415 | 412 |
| 416 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); | 413 DISALLOW_COPY_AND_ASSIGN(BrowserOptionsHandler); |
| 417 }; | 414 }; |
| 418 | 415 |
| 419 } // namespace options | 416 } // namespace options |
| 420 | 417 |
| 421 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ | 418 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_BROWSER_OPTIONS_HANDLER_H_ |
| OLD | NEW |