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

Side by Side Diff: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp

Issue 15178007: Add runtime flag for PagePopup. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Alphabetized Created 7 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) 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 381
382 bool WebRuntimeFeatures::isNotificationsEnabled() 382 bool WebRuntimeFeatures::isNotificationsEnabled()
383 { 383 {
384 #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS) 384 #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
385 return RuntimeEnabledFeatures::notificationsEnabled(); 385 return RuntimeEnabledFeatures::notificationsEnabled();
386 #else 386 #else
387 return false; 387 return false;
388 #endif 388 #endif
389 } 389 }
390 390
391 void WebRuntimeFeatures::enablePagePopup(bool enable)
392 {
393 RuntimeEnabledFeatures::setPagePopupEnabled(enable);
394 }
395
396 bool WebRuntimeFeatures::isPagePopupEnabled()
397 {
398 return RuntimeEnabledFeatures::pagePopupEnabled();
399 }
400
391 void WebRuntimeFeatures::enablePeerConnection(bool enable) 401 void WebRuntimeFeatures::enablePeerConnection(bool enable)
392 { 402 {
393 RuntimeEnabledFeatures::setPeerConnectionEnabled(enable); 403 RuntimeEnabledFeatures::setPeerConnectionEnabled(enable);
394 } 404 }
395 405
396 bool WebRuntimeFeatures::isPeerConnectionEnabled() 406 bool WebRuntimeFeatures::isPeerConnectionEnabled()
397 { 407 {
398 return RuntimeEnabledFeatures::peerConnectionEnabled(); 408 return RuntimeEnabledFeatures::peerConnectionEnabled();
399 } 409 }
400 410
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 { 532 {
523 RuntimeEnabledFeatures::setWebPInAcceptHeaderEnabled(enable); 533 RuntimeEnabledFeatures::setWebPInAcceptHeaderEnabled(enable);
524 } 534 }
525 535
526 bool WebRuntimeFeatures::isWebPInAcceptHeaderEnabled() 536 bool WebRuntimeFeatures::isWebPInAcceptHeaderEnabled()
527 { 537 {
528 return RuntimeEnabledFeatures::webPInAcceptHeaderEnabled(); 538 return RuntimeEnabledFeatures::webPInAcceptHeaderEnabled();
529 } 539 }
530 540
531 } // namespace WebKit 541 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/public/WebRuntimeFeatures.h ('k') | Source/core/page/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698