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

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

Issue 3127008: Preliminary work on resuming downloads whose connections have expired.
Patch Set: Waiting to send download automation error message until after other downloads are canceled. Created 10 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 const char kEnableContentPrefetch[] = "enable-content-prefetch"; 395 const char kEnableContentPrefetch[] = "enable-content-prefetch";
396 396
397 // Enable CoreLocation geoposition data provider 397 // Enable CoreLocation geoposition data provider
398 const char kEnableCoreLocation[] = "enable-core-location"; 398 const char kEnableCoreLocation[] = "enable-core-location";
399 399
400 // Enables device motion events. 400 // Enables device motion events.
401 const char kEnableDeviceMotion[] = "enable-device-motion"; 401 const char kEnableDeviceMotion[] = "enable-device-motion";
402 402
403 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; 403 const char kEnableDNSSECCerts[] = "enable-dnssec-certs";
404 404
405 // Enables restarting interrupted downloads.
406 const char kEnableDownloadRestarts[] = "enable-download-restarts";
407
405 // Enables extension APIs that are in development. 408 // Enables extension APIs that are in development.
406 const char kEnableExperimentalExtensionApis[] = 409 const char kEnableExperimentalExtensionApis[] =
407 "enable-experimental-extension-apis"; 410 "enable-experimental-extension-apis";
408 411
409 // Enable experimental timeline API. 412 // Enable experimental timeline API.
410 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 413 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
411 414
412 // Enable the fastback page cache. 415 // Enable the fastback page cache.
413 const char kEnableFastback[] = "enable-fastback"; 416 const char kEnableFastback[] = "enable-fastback";
414 417
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 1260
1258 // ----------------------------------------------------------------------------- 1261 // -----------------------------------------------------------------------------
1259 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1262 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1260 // 1263 //
1261 // You were going to just dump your switches here, weren't you? Instead, 1264 // You were going to just dump your switches here, weren't you? Instead,
1262 // please put them in alphabetical order above, or in order inside the 1265 // please put them in alphabetical order above, or in order inside the
1263 // appropriate ifdef at the bottom. The order should match the header. 1266 // appropriate ifdef at the bottom. The order should match the header.
1264 // ----------------------------------------------------------------------------- 1267 // -----------------------------------------------------------------------------
1265 1268
1266 } // namespace switches 1269 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698