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

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

Issue 1278583004: Undo overlay fullscreen video background transparency (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove extraneous space 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/web/FullscreenController.cpp ('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::enableOverlayScrollbars(bool enable) 252 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable)
253 { 253 {
254 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); 254 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable);
255 } 255 }
256 256
257 void WebRuntimeFeatures::enableOverlayFullscreenVideo(bool enable) 257 void WebRuntimeFeatures::enableOverlayFullscreenVideo(bool enable)
258 { 258 {
259 RuntimeEnabledFeatures::setOverlayFullscreenVideoEnabled(enable); 259 RuntimeEnabledFeatures::setOverlayFullscreenVideoEnabled(enable);
260 } 260 }
261 261
262 void WebRuntimeFeatures::forceOverlayFullscreenVideo(bool enable)
263 {
264 RuntimeEnabledFeatures::setForceOverlayFullscreenVideoEnabled(enable);
265 }
266
262 void WebRuntimeFeatures::enableSharedWorker(bool enable) 267 void WebRuntimeFeatures::enableSharedWorker(bool enable)
263 { 268 {
264 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable); 269 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable);
265 } 270 }
266 271
267 void WebRuntimeFeatures::enablePreciseMemoryInfo(bool enable) 272 void WebRuntimeFeatures::enablePreciseMemoryInfo(bool enable)
268 { 273 {
269 RuntimeEnabledFeatures::setPreciseMemoryInfoEnabled(enable); 274 RuntimeEnabledFeatures::setPreciseMemoryInfoEnabled(enable);
270 } 275 }
271 276
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 { 323 {
319 RuntimeEnabledFeatures::setUnsafeES3APIsEnabled(enable); 324 RuntimeEnabledFeatures::setUnsafeES3APIsEnabled(enable);
320 } 325 }
321 326
322 void WebRuntimeFeatures::enableWebVR(bool enable) 327 void WebRuntimeFeatures::enableWebVR(bool enable)
323 { 328 {
324 RuntimeEnabledFeatures::setWebVREnabled(enable); 329 RuntimeEnabledFeatures::setWebVREnabled(enable);
325 } 330 }
326 331
327 } // namespace blink 332 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/FullscreenController.cpp ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698