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

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: " Created 8 years, 7 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider) 409 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider)
410 }, 410 },
411 { 411 {
412 "downloads-new-ui", // FLAGS:RECORD_UMA 412 "downloads-new-ui", // FLAGS:RECORD_UMA
413 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME, 413 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME,
414 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION, 414 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION,
415 kOsAll, 415 kOsAll,
416 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI) 416 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI)
417 }, 417 },
418 { 418 {
419 "save-page-as-mhtml", // FLAGS::RECORD_UMA
420 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
421 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
422 kOsMac | kOsWin | kOsLinux,
423 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
424 },
425 {
419 "enable-autologin", 426 "enable-autologin",
420 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, 427 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
421 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, 428 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
422 kOsMac | kOsWin | kOsLinux, 429 kOsMac | kOsWin | kOsLinux,
423 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 430 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
424 }, 431 },
425 { 432 {
426 "enable-http-pipelining", 433 "enable-http-pipelining",
427 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME, 434 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME,
428 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION, 435 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION,
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
1106 } 1113 }
1107 1114
1108 const Experiment* GetExperiments(size_t* count) { 1115 const Experiment* GetExperiments(size_t* count) {
1109 *count = num_experiments; 1116 *count = num_experiments;
1110 return experiments; 1117 return experiments;
1111 } 1118 }
1112 1119
1113 } // namespace testing 1120 } // namespace testing
1114 1121
1115 } // namespace about_flags 1122 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698