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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 113133004: Flag for auto-reload work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Switched flag from content to chrome. Created 7 years 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1484 MULTI_VALUE_TYPE(kMaxTilesForInterestAreaChoices) 1484 MULTI_VALUE_TYPE(kMaxTilesForInterestAreaChoices)
1485 }, 1485 },
1486 { 1486 {
1487 "enable-offline-mode", 1487 "enable-offline-mode",
1488 IDS_FLAGS_ENABLE_OFFLINE_MODE_NAME, 1488 IDS_FLAGS_ENABLE_OFFLINE_MODE_NAME,
1489 IDS_FLAGS_ENABLE_OFFLINE_MODE_DESCRIPTION, 1489 IDS_FLAGS_ENABLE_OFFLINE_MODE_DESCRIPTION,
1490 kOsAll, 1490 kOsAll,
1491 SINGLE_VALUE_TYPE(switches::kEnableOfflineCacheAccess) 1491 SINGLE_VALUE_TYPE(switches::kEnableOfflineCacheAccess)
1492 }, 1492 },
1493 { 1493 {
1494 "enable-offline-auto-reload",
1495 IDS_FLAGS_ENABLE_OFFLINE_AUTO_RELOAD_NAME,
1496 IDS_FLAGS_ENABLE_OFFLINE_AUTO_RELOAD_DESCRIPTION,
1497 kOsAll,
1498 SINGLE_VALUE_TYPE(switches::kEnableOfflineAutoReload)
1499 },
1500 {
1494 "default-tile-width", 1501 "default-tile-width",
1495 IDS_FLAGS_DEFAULT_TILE_WIDTH_NAME, 1502 IDS_FLAGS_DEFAULT_TILE_WIDTH_NAME,
1496 IDS_FLAGS_DEFAULT_TILE_WIDTH_DESCRIPTION, 1503 IDS_FLAGS_DEFAULT_TILE_WIDTH_DESCRIPTION,
1497 kOsAll, 1504 kOsAll,
1498 MULTI_VALUE_TYPE(kDefaultTileWidthChoices) 1505 MULTI_VALUE_TYPE(kDefaultTileWidthChoices)
1499 }, 1506 },
1500 { 1507 {
1501 "default-tile-height", 1508 "default-tile-height",
1502 IDS_FLAGS_DEFAULT_TILE_HEIGHT_NAME, 1509 IDS_FLAGS_DEFAULT_TILE_HEIGHT_NAME,
1503 IDS_FLAGS_DEFAULT_TILE_HEIGHT_DESCRIPTION, 1510 IDS_FLAGS_DEFAULT_TILE_HEIGHT_DESCRIPTION,
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
2423 } 2430 }
2424 2431
2425 const Experiment* GetExperiments(size_t* count) { 2432 const Experiment* GetExperiments(size_t* count) {
2426 *count = num_experiments; 2433 *count = num_experiments;
2427 return experiments; 2434 return experiments;
2428 } 2435 }
2429 2436
2430 } // namespace testing 2437 } // namespace testing
2431 2438
2432 } // namespace about_flags 2439 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698