| 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 #include "chrome/browser/ui/webui/options/core_options_handler.h" | 5 #include "chrome/browser/ui/webui/options/core_options_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 DispatchPrefChangeNotification(pref_name, std::move(value)); | 350 DispatchPrefChangeNotification(pref_name, std::move(value)); |
| 351 } | 351 } |
| 352 | 352 |
| 353 void CoreOptionsHandler::DispatchPrefChangeNotification( | 353 void CoreOptionsHandler::DispatchPrefChangeNotification( |
| 354 const std::string& name, | 354 const std::string& name, |
| 355 std::unique_ptr<base::Value> value) { | 355 std::unique_ptr<base::Value> value) { |
| 356 std::pair<PreferenceCallbackMap::const_iterator, | 356 std::pair<PreferenceCallbackMap::const_iterator, |
| 357 PreferenceCallbackMap::const_iterator> range = | 357 PreferenceCallbackMap::const_iterator> range = |
| 358 pref_callback_map_.equal_range(name); | 358 pref_callback_map_.equal_range(name); |
| 359 base::ListValue result_value; | 359 base::ListValue result_value; |
| 360 result_value.Append(new base::StringValue(name)); | 360 result_value.AppendString(name); |
| 361 result_value.Append(value.release()); | 361 result_value.Append(value.release()); |
| 362 for (PreferenceCallbackMap::const_iterator iter = range.first; | 362 for (PreferenceCallbackMap::const_iterator iter = range.first; |
| 363 iter != range.second; ++iter) { | 363 iter != range.second; ++iter) { |
| 364 const std::string& callback_function = iter->second; | 364 const std::string& callback_function = iter->second; |
| 365 web_ui()->CallJavascriptFunction(callback_function, result_value); | 365 web_ui()->CallJavascriptFunction(callback_function, result_value); |
| 366 } | 366 } |
| 367 } | 367 } |
| 368 | 368 |
| 369 base::Value* CoreOptionsHandler::CreateValueForPref( | 369 base::Value* CoreOptionsHandler::CreateValueForPref( |
| 370 const std::string& pref_name, | 370 const std::string& pref_name, |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 plugin_status_pref_setter_.IsPepperFlashSettingsEnabled()); | 657 plugin_status_pref_setter_.IsPepperFlashSettingsEnabled()); |
| 658 web_ui()->CallJavascriptFunction( | 658 web_ui()->CallJavascriptFunction( |
| 659 "options.OptionsPage.setPepperFlashSettingsEnabled", enabled); | 659 "options.OptionsPage.setPepperFlashSettingsEnabled", enabled); |
| 660 } | 660 } |
| 661 | 661 |
| 662 bool CoreOptionsHandler::IsUserUnsupervised(const base::Value* to_value) { | 662 bool CoreOptionsHandler::IsUserUnsupervised(const base::Value* to_value) { |
| 663 return !Profile::FromWebUI(web_ui())->IsSupervised(); | 663 return !Profile::FromWebUI(web_ui())->IsSupervised(); |
| 664 } | 664 } |
| 665 | 665 |
| 666 } // namespace options | 666 } // namespace options |
| OLD | NEW |