| 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/extensions/extension_webkit_preferences.h" | 5 #include "chrome/browser/extensions/extension_webkit_preferences.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/common/chrome_switches.h" | 8 #include "chrome/common/chrome_switches.h" |
| 9 #include "chrome/common/extensions/extension.h" | 9 #include "chrome/common/extensions/extension.h" |
| 10 #include "chrome/common/extensions/manifest.h" |
| 10 #include "webkit/glue/webpreferences.h" | 11 #include "webkit/glue/webpreferences.h" |
| 11 | 12 |
| 12 namespace extension_webkit_preferences { | 13 namespace extension_webkit_preferences { |
| 13 | 14 |
| 14 void SetPreferences(const extensions::Extension* extension, | 15 void SetPreferences(const extensions::Extension* extension, |
| 15 chrome::ViewType render_view_type, | 16 chrome::ViewType render_view_type, |
| 16 webkit_glue::WebPreferences* webkit_prefs) { | 17 webkit_glue::WebPreferences* webkit_prefs) { |
| 17 if (!extension) | 18 if (!extension) |
| 18 return; | 19 return; |
| 19 | 20 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 46 // more risk of fingerprinting. | 47 // more risk of fingerprinting. |
| 47 webkit_prefs->privileged_webgl_extensions_enabled = true; | 48 webkit_prefs->privileged_webgl_extensions_enabled = true; |
| 48 | 49 |
| 49 // If this is a component extension, then apply the same poliy for | 50 // If this is a component extension, then apply the same poliy for |
| 50 // accelerated compositing as for chrome: URLs (from | 51 // accelerated compositing as for chrome: URLs (from |
| 51 // WebContents::GetWebkitPrefs). This is important for component extensions | 52 // WebContents::GetWebkitPrefs). This is important for component extensions |
| 52 // like the file manager which are sometimes loaded using chrome: URLs and | 53 // like the file manager which are sometimes loaded using chrome: URLs and |
| 53 // sometimes loaded with chrome-extension: URLs - we should expect the | 54 // sometimes loaded with chrome-extension: URLs - we should expect the |
| 54 // performance characteristics to be similar in both cases. | 55 // performance characteristics to be similar in both cases. |
| 55 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); | 56 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
| 56 if (extension->location() == extensions::Extension::COMPONENT && | 57 if (extension->location() == extensions::Manifest::COMPONENT && |
| 57 !command_line.HasSwitch(switches::kAllowWebUICompositing)) { | 58 !command_line.HasSwitch(switches::kAllowWebUICompositing)) { |
| 58 webkit_prefs->accelerated_compositing_enabled = false; | 59 webkit_prefs->accelerated_compositing_enabled = false; |
| 59 webkit_prefs->accelerated_2d_canvas_enabled = false; | 60 webkit_prefs->accelerated_2d_canvas_enabled = false; |
| 60 } | 61 } |
| 61 } | 62 } |
| 62 | 63 |
| 63 } // extension_webkit_preferences | 64 } // extension_webkit_preferences |
| OLD | NEW |