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

Side by Side Diff: Source/WebCore/page/Settings.cpp

Issue 9618044: Merge 109973 - [chromium] Increase the accelerated canvas min size to 256 * 256 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 9 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
« 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 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 Settings::Settings(Page* page) 109 Settings::Settings(Page* page)
110 : m_page(page) 110 : m_page(page)
111 , m_editableLinkBehavior(EditableLinkDefaultBehavior) 111 , m_editableLinkBehavior(EditableLinkDefaultBehavior)
112 , m_textDirectionSubmenuInclusionBehavior(TextDirectionSubmenuAutomaticallyI ncluded) 112 , m_textDirectionSubmenuInclusionBehavior(TextDirectionSubmenuAutomaticallyI ncluded)
113 , m_passwordEchoDurationInSeconds(1) 113 , m_passwordEchoDurationInSeconds(1)
114 , m_minimumFontSize(0) 114 , m_minimumFontSize(0)
115 , m_minimumLogicalFontSize(0) 115 , m_minimumLogicalFontSize(0)
116 , m_defaultFontSize(0) 116 , m_defaultFontSize(0)
117 , m_defaultFixedFontSize(0) 117 , m_defaultFixedFontSize(0)
118 , m_validationMessageTimerMagnification(50) 118 , m_validationMessageTimerMagnification(50)
119 , m_minimumAccelerated2dCanvasSize(128 * 128) 119 , m_minimumAccelerated2dCanvasSize(257 * 256)
120 , m_layoutFallbackWidth(980) 120 , m_layoutFallbackWidth(980)
121 , m_deviceDPI(240) 121 , m_deviceDPI(240)
122 , m_maximumDecodedImageSize(numeric_limits<size_t>::max()) 122 , m_maximumDecodedImageSize(numeric_limits<size_t>::max())
123 , m_deviceWidth(480) 123 , m_deviceWidth(480)
124 , m_deviceHeight(854) 124 , m_deviceHeight(854)
125 , m_sessionStorageQuota(StorageMap::noQuota) 125 , m_sessionStorageQuota(StorageMap::noQuota)
126 , m_editingBehaviorType(editingBehaviorTypeForPlatform()) 126 , m_editingBehaviorType(editingBehaviorTypeForPlatform())
127 , m_maximumHTMLParserDOMTreeDepth(defaultMaximumHTMLParserDOMTreeDepth) 127 , m_maximumHTMLParserDOMTreeDepth(defaultMaximumHTMLParserDOMTreeDepth)
128 , m_isSpatialNavigationEnabled(false) 128 , m_isSpatialNavigationEnabled(false)
129 , m_isJavaEnabled(false) 129 , m_isJavaEnabled(false)
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 { 840 {
841 gMockScrollbarsEnabled = flag; 841 gMockScrollbarsEnabled = flag;
842 } 842 }
843 843
844 bool Settings::mockScrollbarsEnabled() 844 bool Settings::mockScrollbarsEnabled()
845 { 845 {
846 return gMockScrollbarsEnabled; 846 return gMockScrollbarsEnabled;
847 } 847 }
848 848
849 } // namespace WebCore 849 } // namespace WebCore
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