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

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: merge 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider) 392 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider)
393 }, 393 },
394 { 394 {
395 "downloads-new-ui", // FLAGS:RECORD_UMA 395 "downloads-new-ui", // FLAGS:RECORD_UMA
396 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME, 396 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME,
397 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION, 397 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION,
398 kOsAll, 398 kOsAll,
399 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI) 399 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI)
400 }, 400 },
401 { 401 {
402 "save-page-as-mhtml", // FLAGS::RECORD_UMA
asanka 2012/05/02 19:26:10 FLAGS:RECORD_UMA (a single colon). And then re-ru
benjhayden 2012/05/03 16:56:48 Done.
403 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
404 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
405 kOsMac | kOsWin | kOsLinux,
406 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
407 },
408 {
402 "enable-autologin", 409 "enable-autologin",
403 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, 410 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
404 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, 411 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
405 kOsMac | kOsWin | kOsLinux, 412 kOsMac | kOsWin | kOsLinux,
406 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 413 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
407 }, 414 },
408 { 415 {
409 "enable-http-pipelining", 416 "enable-http-pipelining",
410 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME, 417 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME,
411 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION, 418 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION,
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 } 1126 }
1120 1127
1121 const Experiment* GetExperiments(size_t* count) { 1128 const Experiment* GetExperiments(size_t* count) {
1122 *count = num_experiments; 1129 *count = num_experiments;
1123 return experiments; 1130 return experiments;
1124 } 1131 }
1125 1132
1126 } // namespace testing 1133 } // namespace testing
1127 1134
1128 } // namespace about_flags 1135 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698