| 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 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" | 5 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 !command_line.HasSwitch(switches::kDisable3DAPIs) && | 280 !command_line.HasSwitch(switches::kDisable3DAPIs) && |
| 281 !command_line.HasSwitch(switches::kDisableExperimentalWebGL); | 281 !command_line.HasSwitch(switches::kDisableExperimentalWebGL); |
| 282 web_prefs.gl_multisampling_enabled = | 282 web_prefs.gl_multisampling_enabled = |
| 283 !command_line.HasSwitch(switches::kDisableGLMultisampling); | 283 !command_line.HasSwitch(switches::kDisableGLMultisampling); |
| 284 web_prefs.site_specific_quirks_enabled = | 284 web_prefs.site_specific_quirks_enabled = |
| 285 !command_line.HasSwitch(switches::kDisableSiteSpecificQuirks); | 285 !command_line.HasSwitch(switches::kDisableSiteSpecificQuirks); |
| 286 web_prefs.allow_file_access_from_file_urls = | 286 web_prefs.allow_file_access_from_file_urls = |
| 287 command_line.HasSwitch(switches::kAllowFileAccessFromFiles); | 287 command_line.HasSwitch(switches::kAllowFileAccessFromFiles); |
| 288 web_prefs.show_composited_layer_borders = | 288 web_prefs.show_composited_layer_borders = |
| 289 command_line.HasSwitch(switches::kShowCompositedLayerBorders); | 289 command_line.HasSwitch(switches::kShowCompositedLayerBorders); |
| 290 web_prefs.show_composited_layer_tree = |
| 291 command_line.HasSwitch(switches::kShowCompositedLayerTree); |
| 292 web_prefs.show_fps_counter = |
| 293 command_line.HasSwitch(switches::kShowFPSCounter); |
| 290 web_prefs.accelerated_compositing_enabled = | 294 web_prefs.accelerated_compositing_enabled = |
| 291 gpu_enabled() && | 295 gpu_enabled() && |
| 292 !command_line.HasSwitch(switches::kDisableAcceleratedCompositing); | 296 !command_line.HasSwitch(switches::kDisableAcceleratedCompositing); |
| 293 web_prefs.accelerated_2d_canvas_enabled = | 297 web_prefs.accelerated_2d_canvas_enabled = |
| 294 gpu_enabled() && | 298 gpu_enabled() && |
| 295 command_line.HasSwitch(switches::kEnableAccelerated2dCanvas); | 299 command_line.HasSwitch(switches::kEnableAccelerated2dCanvas); |
| 296 web_prefs.accelerated_layers_enabled = | 300 web_prefs.accelerated_layers_enabled = |
| 297 !command_line.HasSwitch(switches::kDisableAcceleratedLayers); | 301 !command_line.HasSwitch(switches::kDisableAcceleratedLayers); |
| 298 web_prefs.accelerated_plugins_enabled = | 302 web_prefs.accelerated_plugins_enabled = |
| 299 command_line.HasSwitch(switches::kEnableAcceleratedPlugins); | 303 command_line.HasSwitch(switches::kEnableAcceleratedPlugins); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 inspector_settings->SetWithoutPathExpansion(key, | 350 inspector_settings->SetWithoutPathExpansion(key, |
| 347 Value::CreateStringValue(value)); | 351 Value::CreateStringValue(value)); |
| 348 } | 352 } |
| 349 | 353 |
| 350 void RenderViewHostDelegateHelper::ClearInspectorSettings(Profile* profile) { | 354 void RenderViewHostDelegateHelper::ClearInspectorSettings(Profile* profile) { |
| 351 DictionaryValue* inspector_settings = | 355 DictionaryValue* inspector_settings = |
| 352 profile->GetPrefs()->GetMutableDictionary( | 356 profile->GetPrefs()->GetMutableDictionary( |
| 353 prefs::kWebKitInspectorSettings); | 357 prefs::kWebKitInspectorSettings); |
| 354 inspector_settings->Clear(); | 358 inspector_settings->Clear(); |
| 355 } | 359 } |
| OLD | NEW |