Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(229)

Side by Side Diff: chrome/browser/extensions/extension_webkit_preferences.cc

Issue 10636039: Disable the special behaviour of document.cookie in platform apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "webkit/glue/webpreferences.h" 10 #include "webkit/glue/webpreferences.h"
(...skipping 21 matching lines...) Expand all
32 // around" crbug.com/123935 32 // around" crbug.com/123935
33 if (render_view_type == chrome::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) { 33 if (render_view_type == chrome::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
34 webkit_prefs->force_compositing_mode = false; 34 webkit_prefs->force_compositing_mode = false;
35 } 35 }
36 } 36 }
37 37
38 if (extension->is_platform_app()) { 38 if (extension->is_platform_app()) {
39 webkit_prefs->databases_enabled = false; 39 webkit_prefs->databases_enabled = false;
40 webkit_prefs->local_storage_enabled = false; 40 webkit_prefs->local_storage_enabled = false;
41 webkit_prefs->sync_xhr_in_documents_enabled = false; 41 webkit_prefs->sync_xhr_in_documents_enabled = false;
42 webkit_prefs->cookie_enabled = false;
42 } 43 }
43 44
44 // Enable WebGL features that regular pages can't access, since they add 45 // Enable WebGL features that regular pages can't access, since they add
45 // more risk of fingerprinting. 46 // more risk of fingerprinting.
46 webkit_prefs->privileged_webgl_extensions_enabled = true; 47 webkit_prefs->privileged_webgl_extensions_enabled = true;
47 48
48 // If this is a component extension, then apply the same poliy for 49 // If this is a component extension, then apply the same poliy for
49 // accelerated compositing as for chrome: URLs (from 50 // accelerated compositing as for chrome: URLs (from
50 // WebContents::GetWebkitPrefs). This is important for component extensions 51 // WebContents::GetWebkitPrefs). This is important for component extensions
51 // like the file manager which are sometimes loaded using chrome: URLs and 52 // like the file manager which are sometimes loaded using chrome: URLs and
52 // sometimes loaded with chrome-extension: URLs - we should expect the 53 // sometimes loaded with chrome-extension: URLs - we should expect the
53 // performance characteristics to be similar in both cases. 54 // performance characteristics to be similar in both cases.
54 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); 55 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
55 if (extension->location() == extensions::Extension::COMPONENT && 56 if (extension->location() == extensions::Extension::COMPONENT &&
56 !command_line.HasSwitch(switches::kAllowWebUICompositing)) { 57 !command_line.HasSwitch(switches::kAllowWebUICompositing)) {
57 webkit_prefs->accelerated_compositing_enabled = false; 58 webkit_prefs->accelerated_compositing_enabled = false;
58 webkit_prefs->accelerated_2d_canvas_enabled = false; 59 webkit_prefs->accelerated_2d_canvas_enabled = false;
59 } 60 }
60 } 61 }
61 62
62 } // extension_webkit_preferences 63 } // extension_webkit_preferences
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698