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

Side by Side Diff: public/web/WebSettings.h

Issue 1118613002: Hook up Android closed captions 'enabled' setting to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have the flag influence automatic track selection Created 5 years, 7 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
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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 virtual void setSpatialNavigationEnabled(bool) = 0; 219 virtual void setSpatialNavigationEnabled(bool) = 0;
220 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C OMMON) = 0; 220 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C OMMON) = 0;
221 virtual void setStrictMixedContentChecking(bool) = 0; 221 virtual void setStrictMixedContentChecking(bool) = 0;
222 virtual void setStrictPowerfulFeatureRestrictions(bool) = 0; 222 virtual void setStrictPowerfulFeatureRestrictions(bool) = 0;
223 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0; 223 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0;
224 virtual void setSupportsMultipleWindows(bool) = 0; 224 virtual void setSupportsMultipleWindows(bool) = 0;
225 virtual void setSyncXHRInDocumentsEnabled(bool) = 0; 225 virtual void setSyncXHRInDocumentsEnabled(bool) = 0;
226 virtual void setTextAreasAreResizable(bool) = 0; 226 virtual void setTextAreasAreResizable(bool) = 0;
227 virtual void setTextAutosizingEnabled(bool) = 0; 227 virtual void setTextAutosizingEnabled(bool) = 0;
228 virtual void setAccessibilityFontScaleFactor(float) = 0; 228 virtual void setAccessibilityFontScaleFactor(float) = 0;
229 virtual void setTextTracksEnabled(bool) = 0;
229 virtual void setTextTrackBackgroundColor(const WebString&) = 0; 230 virtual void setTextTrackBackgroundColor(const WebString&) = 0;
230 virtual void setTextTrackFontFamily(const WebString&) = 0; 231 virtual void setTextTrackFontFamily(const WebString&) = 0;
231 virtual void setTextTrackFontStyle(const WebString&) = 0; 232 virtual void setTextTrackFontStyle(const WebString&) = 0;
232 virtual void setTextTrackFontVariant(const WebString&) = 0; 233 virtual void setTextTrackFontVariant(const WebString&) = 0;
233 virtual void setTextTrackTextColor(const WebString&) = 0; 234 virtual void setTextTrackTextColor(const WebString&) = 0;
234 virtual void setTextTrackTextShadow(const WebString&) = 0; 235 virtual void setTextTrackTextShadow(const WebString&) = 0;
235 virtual void setTextTrackTextSize(const WebString&) = 0; 236 virtual void setTextTrackTextSize(const WebString&) = 0;
236 virtual void setThreadedScrollingEnabled(bool) = 0; 237 virtual void setThreadedScrollingEnabled(bool) = 0;
237 virtual void setTouchDragDropEnabled(bool) = 0; 238 virtual void setTouchDragDropEnabled(bool) = 0;
238 virtual void setTouchEditingEnabled(bool) = 0; 239 virtual void setTouchEditingEnabled(bool) = 0;
(...skipping 18 matching lines...) Expand all
257 virtual void setWideViewportQuirkEnabled(bool) = 0; 258 virtual void setWideViewportQuirkEnabled(bool) = 0;
258 virtual void setXSSAuditorEnabled(bool) = 0; 259 virtual void setXSSAuditorEnabled(bool) = 0;
259 260
260 protected: 261 protected:
261 ~WebSettings() { } 262 ~WebSettings() { }
262 }; 263 };
263 264
264 } // namespace blink 265 } // namespace blink
265 266
266 #endif 267 #endif
OLDNEW
« Source/core/html/HTMLMediaElement.cpp ('K') | « Source/web/WebSettingsImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698