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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 23477051: Embed Flash Fullscreen widget within browser window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rolled WebContentsObserver into WebView. Created 7 years, 3 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 const char kDiskCacheDir[] = "disk-cache-dir"; 500 const char kDiskCacheDir[] = "disk-cache-dir";
501 501
502 // Forces the maximum disk space to be used by the disk cache, in bytes. 502 // Forces the maximum disk space to be used by the disk cache, in bytes.
503 const char kDiskCacheSize[] = "disk-cache-size"; 503 const char kDiskCacheSize[] = "disk-cache-size";
504 504
505 const char kDnsLogDetails[] = "dns-log-details"; 505 const char kDnsLogDetails[] = "dns-log-details";
506 506
507 // Disables prefetching of DNS information. 507 // Disables prefetching of DNS information.
508 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; 508 const char kDnsPrefetchDisable[] = "dns-prefetch-disable";
509 509
510 // If set, Flash fullscreen widgets are embedded within the browser window and
511 // with the same UX as HTML5 fullscreen.
512 const char kEmbedFlashFullscreen[] = "embed-flash-fullscreen";
513
510 // Enables the <adview> tag in packaged apps. 514 // Enables the <adview> tag in packaged apps.
511 const char kEnableAdview[] = "enable-adview"; 515 const char kEnableAdview[] = "enable-adview";
512 516
513 // If set, the app list will be enabled as if enabled from CWS. 517 // If set, the app list will be enabled as if enabled from CWS.
514 const char kEnableAppList[] = "enable-app-list"; 518 const char kEnableAppList[] = "enable-app-list";
515 519
516 // Enables specifying a "src" attribute on <adview> elements 520 // Enables specifying a "src" attribute on <adview> elements
517 // (for testing purposes, to skip the whitelist). 521 // (for testing purposes, to skip the whitelist).
518 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; 522 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute";
519 523
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1607 1611
1608 // ----------------------------------------------------------------------------- 1612 // -----------------------------------------------------------------------------
1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1613 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1610 // 1614 //
1611 // You were going to just dump your switches here, weren't you? Instead, please 1615 // You were going to just dump your switches here, weren't you? Instead, please
1612 // put them in alphabetical order above, or in order inside the appropriate 1616 // put them in alphabetical order above, or in order inside the appropriate
1613 // ifdef at the bottom. The order should match the header. 1617 // ifdef at the bottom. The order should match the header.
1614 // ----------------------------------------------------------------------------- 1618 // -----------------------------------------------------------------------------
1615 1619
1616 } // namespace switches 1620 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698