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

Side by Side Diff: Source/web/WebSettingsImpl.h

Issue 23187005: [DevTools] Use device metrics emulation implemented in content. (Closed) Base URL: svn://svn.chromium.org/blink/trunk/
Patch Set: Reupload Created 7 years, 2 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 virtual void setOpenGLMultisamplingEnabled(bool); 127 virtual void setOpenGLMultisamplingEnabled(bool);
128 virtual void setPasswordEchoDurationInSeconds(double); 128 virtual void setPasswordEchoDurationInSeconds(double);
129 virtual void setPasswordEchoEnabled(bool); 129 virtual void setPasswordEchoEnabled(bool);
130 virtual void setPerTilePaintingEnabled(bool); 130 virtual void setPerTilePaintingEnabled(bool);
131 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT _COMMON); 131 virtual void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT _COMMON);
132 virtual void setPinchOverlayScrollbarThickness(int); 132 virtual void setPinchOverlayScrollbarThickness(int);
133 virtual void setPinchVirtualViewportEnabled(bool); 133 virtual void setPinchVirtualViewportEnabled(bool);
134 virtual void setPluginsEnabled(bool); 134 virtual void setPluginsEnabled(bool);
135 virtual void setPrivilegedWebGLExtensionsEnabled(bool); 135 virtual void setPrivilegedWebGLExtensionsEnabled(bool);
136 virtual void setRenderVSyncNotificationEnabled(bool); 136 virtual void setRenderVSyncNotificationEnabled(bool);
137 virtual void setRootLayerClipsContent(bool);
137 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON); 138 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_ COMMON);
138 virtual void setSelectTrailingWhitespaceEnabled(bool); 139 virtual void setSelectTrailingWhitespaceEnabled(bool);
139 virtual void setSelectionIncludesAltImageText(bool); 140 virtual void setSelectionIncludesAltImageText(bool);
140 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON); 141 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM ON);
141 virtual void setShouldDisplayCaptions(bool); 142 virtual void setShouldDisplayCaptions(bool);
142 virtual void setShouldDisplaySubtitles(bool); 143 virtual void setShouldDisplaySubtitles(bool);
143 virtual void setShouldDisplayTextDescriptions(bool); 144 virtual void setShouldDisplayTextDescriptions(bool);
144 virtual void setShouldPrintBackgrounds(bool); 145 virtual void setShouldPrintBackgrounds(bool);
145 virtual void setShouldRespectImageOrientation(bool); 146 virtual void setShouldRespectImageOrientation(bool);
146 virtual void setShowFPSCounter(bool); 147 virtual void setShowFPSCounter(bool);
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 // This quirk is to maintain compatibility with Android apps built on 202 // This quirk is to maintain compatibility with Android apps built on
202 // the Android SDK prior to and including version 18. Presumably, this 203 // the Android SDK prior to and including version 18. Presumably, this
203 // can be removed any time after 2015. See http://crbug.com/277369. 204 // can be removed any time after 2015. See http://crbug.com/277369.
204 bool m_viewportMetaLayoutSizeQuirk; 205 bool m_viewportMetaLayoutSizeQuirk;
205 int m_pinchOverlayScrollbarThickness; 206 int m_pinchOverlayScrollbarThickness;
206 }; 207 };
207 208
208 } // namespace WebKit 209 } // namespace WebKit
209 210
210 #endif 211 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698