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

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

Issue 240843002: Reverse the embedded-shared-worker flag to turn the feature on by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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 1763 matching lines...) Expand 10 before | Expand all | Expand 10 after
1774 #if defined(GOOGLE_CHROME_BUILD) 1774 #if defined(GOOGLE_CHROME_BUILD)
1775 { 1775 {
1776 "enable-easy-unlock", 1776 "enable-easy-unlock",
1777 IDS_FLAGS_ENABLE_EASY_UNLOCK_NAME, 1777 IDS_FLAGS_ENABLE_EASY_UNLOCK_NAME,
1778 IDS_FLAGS_ENABLE_EASY_UNLOCK_DESCRIPTION, 1778 IDS_FLAGS_ENABLE_EASY_UNLOCK_DESCRIPTION,
1779 kOsCrOS, 1779 kOsCrOS,
1780 SINGLE_VALUE_TYPE(switches::kEnableEasyUnlock) 1780 SINGLE_VALUE_TYPE(switches::kEnableEasyUnlock)
1781 }, 1781 },
1782 #endif 1782 #endif
1783 { 1783 {
1784 "enable-embedded-shared-worker", 1784 "disable-embedded-shared-worker",
1785 IDS_FLAGS_ENABLE_EMBEDDED_SHARED_WORKER_NAME, 1785 IDS_FLAGS_DISABLE_EMBEDDED_SHARED_WORKER_NAME,
1786 IDS_FLAGS_ENABLE_EMBEDDED_SHARED_WORKER_DESCRIPTION, 1786 IDS_FLAGS_DISABLE_EMBEDDED_SHARED_WORKER_DESCRIPTION,
1787 kOsDesktop, 1787 kOsDesktop,
1788 SINGLE_VALUE_TYPE(switches::kEnableEmbeddedSharedWorker) 1788 SINGLE_VALUE_TYPE(switches::kDisableEmbeddedSharedWorker)
1789 }, 1789 },
1790 #if defined(OS_CHROMEOS) 1790 #if defined(OS_CHROMEOS)
1791 { 1791 {
1792 "enable-filemanager-mtp", 1792 "enable-filemanager-mtp",
1793 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_NAME, 1793 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_NAME,
1794 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_DESCRIPTION, 1794 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_DESCRIPTION,
1795 kOsCrOS, 1795 kOsCrOS,
1796 SINGLE_VALUE_TYPE(chromeos::switches::kEnableFileManagerMTP) 1796 SINGLE_VALUE_TYPE(chromeos::switches::kEnableFileManagerMTP)
1797 }, 1797 },
1798 #endif 1798 #endif
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
2313 } 2313 }
2314 2314
2315 const Experiment* GetExperiments(size_t* count) { 2315 const Experiment* GetExperiments(size_t* count) {
2316 *count = num_experiments; 2316 *count = num_experiments;
2317 return experiments; 2317 return experiments;
2318 } 2318 }
2319 2319
2320 } // namespace testing 2320 } // namespace testing
2321 2321
2322 } // namespace about_flags 2322 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | content/browser/worker_host/test/worker_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698