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

Side by Side Diff: Source/web/WebRuntimeFeatures.cpp

Issue 1311763004: Complete replacement of REF OverlayFullscreenVideo (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 | « Source/platform/RuntimeEnabledFeatures.in ('k') | public/web/WebRuntimeFeatures.h » ('j') | 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 void WebRuntimeFeatures::enableXSLT(bool enable) 252 void WebRuntimeFeatures::enableXSLT(bool enable)
253 { 253 {
254 RuntimeEnabledFeatures::setXSLTEnabled(enable); 254 RuntimeEnabledFeatures::setXSLTEnabled(enable);
255 } 255 }
256 256
257 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable) 257 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable)
258 { 258 {
259 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); 259 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable);
260 } 260 }
261 261
262 void WebRuntimeFeatures::enableOverlayFullscreenVideo(bool enable)
263 {
264 RuntimeEnabledFeatures::setOverlayFullscreenVideoEnabled(enable);
265 }
266
267 void WebRuntimeFeatures::forceOverlayFullscreenVideo(bool enable) 262 void WebRuntimeFeatures::forceOverlayFullscreenVideo(bool enable)
268 { 263 {
269 RuntimeEnabledFeatures::setForceOverlayFullscreenVideoEnabled(enable); 264 RuntimeEnabledFeatures::setForceOverlayFullscreenVideoEnabled(enable);
270 } 265 }
271 266
272 void WebRuntimeFeatures::enableSharedWorker(bool enable) 267 void WebRuntimeFeatures::enableSharedWorker(bool enable)
273 { 268 {
274 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable); 269 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable);
275 } 270 }
276 271
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 { 328 {
334 RuntimeEnabledFeatures::setNewMediaPlaybackUiEnabled(enable); 329 RuntimeEnabledFeatures::setNewMediaPlaybackUiEnabled(enable);
335 } 330 }
336 331
337 void WebRuntimeFeatures::enablePresentationAPI(bool enable) 332 void WebRuntimeFeatures::enablePresentationAPI(bool enable)
338 { 333 {
339 RuntimeEnabledFeatures::setPresentationEnabled(enable); 334 RuntimeEnabledFeatures::setPresentationEnabled(enable);
340 } 335 }
341 336
342 } // namespace blink 337 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698