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

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2666833002: Create entry to PWSharing through ShareHelper (Closed)
Patch Set: Fixing Comments Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/android/chrome_feature_list.h" 5 #include "chrome/browser/android/chrome_feature_list.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 &kDownloadsUiFeature, 48 &kDownloadsUiFeature,
49 &kImportantSitesInCBD, 49 &kImportantSitesInCBD,
50 &kImprovedA2HS, 50 &kImprovedA2HS,
51 &kNativeAndroidHistoryManager, 51 &kNativeAndroidHistoryManager,
52 &kNoCreditCardAbort, 52 &kNoCreditCardAbort,
53 &kNTPFakeOmniboxTextFeature, 53 &kNTPFakeOmniboxTextFeature,
54 &kNTPOfflinePagesFeature, 54 &kNTPOfflinePagesFeature,
55 &kNTPSuggestionsStandaloneUIFeature, 55 &kNTPSuggestionsStandaloneUIFeature,
56 &kPhysicalWebFeature, 56 &kPhysicalWebFeature,
57 &kPhysicalWebIgnoreOtherClientsFeature, 57 &kPhysicalWebIgnoreOtherClientsFeature,
58 &kPhysicalWebSharing,
58 &kSpecialLocaleFeature, 59 &kSpecialLocaleFeature,
59 &kSpecialLocaleWrapper, 60 &kSpecialLocaleWrapper,
60 &kTabsInCBD, 61 &kTabsInCBD,
61 &kTabReparenting, 62 &kTabReparenting,
62 &kWebPaymentsModifiers, 63 &kWebPaymentsModifiers,
63 &kWebPaymentsSingleAppUiSkip, 64 &kWebPaymentsSingleAppUiSkip,
64 &ntp_snippets::kContentSuggestionsFeature, 65 &ntp_snippets::kContentSuggestionsFeature,
65 &ntp_snippets::kIncreasedVisibility, 66 &ntp_snippets::kIncreasedVisibility,
66 &ntp_snippets::kForeignSessionsSuggestionsFeature, 67 &ntp_snippets::kForeignSessionsSuggestionsFeature,
67 &ntp_snippets::kOfflineBadgeFeature, 68 &ntp_snippets::kOfflineBadgeFeature,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 123
123 const base::Feature kNTPSuggestionsStandaloneUIFeature{ 124 const base::Feature kNTPSuggestionsStandaloneUIFeature{
124 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT}; 125 "NTPSuggestionsStandaloneUI", base::FEATURE_DISABLED_BY_DEFAULT};
125 126
126 const base::Feature kPhysicalWebFeature{"PhysicalWeb", 127 const base::Feature kPhysicalWebFeature{"PhysicalWeb",
127 base::FEATURE_ENABLED_BY_DEFAULT}; 128 base::FEATURE_ENABLED_BY_DEFAULT};
128 129
129 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{ 130 const base::Feature kPhysicalWebIgnoreOtherClientsFeature{
130 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT}; 131 "PhysicalWebIgnoreOtherClients", base::FEATURE_DISABLED_BY_DEFAULT};
131 132
133 const base::Feature kPhysicalWebSharing{
134 "PhysicalWebSharing", base::FEATURE_DISABLED_BY_DEFAULT};
135
136
mattreynolds 2017/01/31 20:30:33 remove newline (keep one blank line between featur
iankc 2017/01/31 22:51:35 Done.
132 const base::Feature kSpecialLocaleFeature{"SpecialLocale", 137 const base::Feature kSpecialLocaleFeature{"SpecialLocale",
133 base::FEATURE_DISABLED_BY_DEFAULT}; 138 base::FEATURE_DISABLED_BY_DEFAULT};
134 139
135 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper", 140 const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper",
136 base::FEATURE_ENABLED_BY_DEFAULT}; 141 base::FEATURE_ENABLED_BY_DEFAULT};
137 142
138 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT}; 143 const base::Feature kTabsInCBD{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT};
139 144
140 const base::Feature kTabReparenting{"TabReparenting", 145 const base::Feature kTabReparenting{"TabReparenting",
141 base::FEATURE_ENABLED_BY_DEFAULT}; 146 base::FEATURE_ENABLED_BY_DEFAULT};
(...skipping 19 matching lines...) Expand all
161 NOTREACHED(); 166 NOTREACHED();
162 return false; 167 return false;
163 } 168 }
164 169
165 bool RegisterChromeFeatureListJni(JNIEnv* env) { 170 bool RegisterChromeFeatureListJni(JNIEnv* env) {
166 return RegisterNativesImpl(env); 171 return RegisterNativesImpl(env);
167 } 172 }
168 173
169 } // namespace android 174 } // namespace android
170 } // namespace chrome 175 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698