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

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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider) 385 SINGLE_VALUE_TYPE(switches::kDisableShortcutsProvider)
386 }, 386 },
387 { 387 {
388 "downloads-new-ui", // FLAGS:RECORD_UMA 388 "downloads-new-ui", // FLAGS:RECORD_UMA
389 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME, 389 IDS_FLAGS_DOWNLOADS_NEW_UI_NAME,
390 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION, 390 IDS_FLAGS_DOWNLOADS_NEW_UI_DESCRIPTION,
391 kOsAll, 391 kOsAll,
392 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI) 392 SINGLE_VALUE_TYPE(switches::kDownloadsNewUI)
393 }, 393 },
394 { 394 {
395 "save-page-as-mhtml", // FLAGS:RECORD_UMA
396 IDS_FLAGS_SAVE_PAGE_AS_MHTML_NAME,
397 IDS_FLAGS_SAVE_PAGE_AS_MHTML_DESCRIPTION,
398 kOsMac | kOsWin | kOsLinux,
399 SINGLE_VALUE_TYPE(switches::kSavePageAsMHTML)
400 },
401 {
395 "enable-autologin", 402 "enable-autologin",
396 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME, 403 IDS_FLAGS_ENABLE_AUTOLOGIN_NAME,
397 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION, 404 IDS_FLAGS_ENABLE_AUTOLOGIN_DESCRIPTION,
398 kOsMac | kOsWin | kOsLinux, 405 kOsMac | kOsWin | kOsLinux,
399 SINGLE_VALUE_TYPE(switches::kEnableAutologin) 406 SINGLE_VALUE_TYPE(switches::kEnableAutologin)
400 }, 407 },
401 { 408 {
402 "enable-http-pipelining", 409 "enable-http-pipelining",
403 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME, 410 IDS_FLAGS_ENABLE_HTTP_PIPELINING_NAME,
404 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION, 411 IDS_FLAGS_ENABLE_HTTP_PIPELINING_DESCRIPTION,
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 } 1124 }
1118 1125
1119 const Experiment* GetExperiments(size_t* count) { 1126 const Experiment* GetExperiments(size_t* count) {
1120 *count = num_experiments; 1127 *count = num_experiments;
1121 return experiments; 1128 return experiments;
1122 } 1129 }
1123 1130
1124 } // namespace testing 1131 } // namespace testing
1125 1132
1126 } // namespace about_flags 1133 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/gdata/gdata_download_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698