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

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: Moving to WeakPtrs and RVHD. 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 // Enables syncing browser sessions. 616 // Enables syncing browser sessions.
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 1447
1444 // ----------------------------------------------------------------------------- 1448 // -----------------------------------------------------------------------------
1445 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1449 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1446 // 1450 //
1447 // You were going to just dump your switches here, weren't you? Instead, please 1451 // You were going to just dump your switches here, weren't you? Instead, please
1448 // put them in alphabetical order above, or in order inside the appropriate 1452 // put them in alphabetical order above, or in order inside the appropriate
1449 // ifdef at the bottom. The order should match the header. 1453 // ifdef at the bottom. The order should match the header.
1450 // ----------------------------------------------------------------------------- 1454 // -----------------------------------------------------------------------------
1451 1455
1452 } // namespace switches 1456 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698