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

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

Issue 10069014: Save Page As MHTML (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: non-cros works Created 8 years, 8 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/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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider) 395 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider)
396 }, 396 },
397 { 397 {
398 "downloads-new-ui", // FLAGS:RECORD_UMA 398 "downloads-new-ui", // FLAGS:RECORD_UMA
399 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME, 399 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME,
400 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION, 400 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION,
401 kOsAll, 401 kOsAll,
402 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI) 402 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI)
403 }, 403 },
404 { 404 {
405 "save-page-as-mhtml", // FLAGS::RECORD_UMA
asanka 2012/04/26 16:06:20 Don't forget to run extract_actions.py
406 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
407 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
408 kOsAll,
409 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
410 },
411 {
405 "enable-autologin", 412 "enable-autologin",
406 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, 413 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
407 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, 414 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
408 kOsMac | kOsWin | kOsLinux, 415 kOsMac | kOsWin | kOsLinux,
409 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 416 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
410 }, 417 },
411 { 418 {
412 "enable-http-pipelining", 419 "enable-http-pipelining",
413 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME, 420 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME,
414 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION, 421 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION,
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 } 1078 }
1072 1079
1073 const Experiment* GetExperiments(size_t* count) { 1080 const Experiment* GetExperiments(size_t* count) {
1074 *count = num_experiments; 1081 *count = num_experiments;
1075 return experiments; 1082 return experiments;
1076 } 1083 }
1077 1084
1078 } // namespace testing 1085 } // namespace testing
1079 1086
1080 } // namespace about_flags 1087 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698