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

Side by Side Diff: Tools/DumpRenderTree/chromium/TestRunner/public/WebPreferences.h

Issue 14298018: This CL implements the first draft of Canvas 2D Context Attributes, aka getContext('2d', { alpha: f… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: IDL cleanup Created 7 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 WebKit::WebSettings::EditingBehavior editingBehavior; 85 WebKit::WebSettings::EditingBehavior editingBehavior;
86 bool tabsToLinks; 86 bool tabsToLinks;
87 bool hyperlinkAuditingEnabled; 87 bool hyperlinkAuditingEnabled;
88 bool caretBrowsingEnabled; 88 bool caretBrowsingEnabled;
89 bool acceleratedCompositingForVideoEnabled; 89 bool acceleratedCompositingForVideoEnabled;
90 bool acceleratedCompositingForFixedPositionEnabled; 90 bool acceleratedCompositingForFixedPositionEnabled;
91 bool acceleratedCompositingForOverflowScrollEnabled; 91 bool acceleratedCompositingForOverflowScrollEnabled;
92 bool acceleratedCompositingEnabled; 92 bool acceleratedCompositingEnabled;
93 bool forceCompositingMode; 93 bool forceCompositingMode;
94 bool threadedHTMLParser; 94 bool threadedHTMLParser;
95 bool experimentalCanvasFeaturesEnabled;
95 bool accelerated2dCanvasEnabled; 96 bool accelerated2dCanvasEnabled;
96 bool perTilePaintingEnabled; 97 bool perTilePaintingEnabled;
97 bool acceleratedAnimationEnabled; 98 bool acceleratedAnimationEnabled;
98 bool deferredImageDecodingEnabled; 99 bool deferredImageDecodingEnabled;
99 bool mediaPlaybackRequiresUserGesture; 100 bool mediaPlaybackRequiresUserGesture;
100 bool mockScrollbarsEnabled; 101 bool mockScrollbarsEnabled;
101 bool cssCustomFilterEnabled; 102 bool cssCustomFilterEnabled;
102 bool shouldRespectImageOrientation; 103 bool shouldRespectImageOrientation;
103 bool asynchronousSpellCheckingEnabled; 104 bool asynchronousSpellCheckingEnabled;
104 bool touchDragDropEnabled; 105 bool touchDragDropEnabled;
105 106
106 WebPreferences() { reset(); } 107 WebPreferences() { reset(); }
107 void reset(); 108 void reset();
108 void applyTo(WebKit::WebView*); 109 void applyTo(WebKit::WebView*);
109 }; 110 };
110 111
111 } 112 }
112 113
113 #endif // WebPreferences_h 114 #endif // WebPreferences_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698