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

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

Issue 10416002: Seculative resource prefetching for URLs CL. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressing Dominich's comments. Created 8 years, 6 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 // 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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 593
594 // Controls the support for SDCH filtering (dictionary based expansion of 594 // Controls the support for SDCH filtering (dictionary based expansion of
595 // content). By default SDCH filtering is enabled. To disable SDCH filtering, 595 // content). By default SDCH filtering is enabled. To disable SDCH filtering,
596 // use "--enable-sdch=0" as command line argument. SDCH is currently only 596 // use "--enable-sdch=0" as command line argument. SDCH is currently only
597 // supported server-side for searches on google.com. 597 // supported server-side for searches on google.com.
598 const char kEnableSdch[] = "enable-sdch"; 598 const char kEnableSdch[] = "enable-sdch";
599 599
600 // Enable SPDY/3. This is a temporary testing flag. 600 // Enable SPDY/3. This is a temporary testing flag.
601 const char kEnableSpdy3[] = "enable-spdy3"; 601 const char kEnableSpdy3[] = "enable-spdy3";
602 602
603 // Enable speculative resource prefetching.
604 const char kEnableSpeculativeResourcePrefetching[] =
605 "enable-speculative-resource-prefetching";
606
603 // Enables the stacked tabstrip. 607 // Enables the stacked tabstrip.
604 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; 608 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip";
605 609
606 // Enables experimental suggestions pane in New Tab page. 610 // Enables experimental suggestions pane in New Tab page.
607 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp"; 611 const char kEnableSuggestionsTabPage[] = "enable-suggestions-ntp";
608 612
609 // Enables the new Sync Signin flow, i.e., chrome:signin for all signins. 613 // Enables the new Sync Signin flow, i.e., chrome:signin for all signins.
610 const char kEnableSyncSignin[] = "enable-sync-signin"; 614 const char kEnableSyncSignin[] = "enable-sync-signin";
611 615
612 // Disables syncing browser sessions. Will override kEnableSyncTabs. 616 // Disables syncing browser sessions. Will override kEnableSyncTabs.
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 1453
1450 // ----------------------------------------------------------------------------- 1454 // -----------------------------------------------------------------------------
1451 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1455 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1452 // 1456 //
1453 // You were going to just dump your switches here, weren't you? Instead, please 1457 // You were going to just dump your switches here, weren't you? Instead, please
1454 // put them in alphabetical order above, or in order inside the appropriate 1458 // put them in alphabetical order above, or in order inside the appropriate
1455 // ifdef at the bottom. The order should match the header. 1459 // ifdef at the bottom. The order should match the header.
1456 // ----------------------------------------------------------------------------- 1460 // -----------------------------------------------------------------------------
1457 1461
1458 } // namespace switches 1462 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698