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

Side by Side Diff: chrome/common/chrome_features.h

Issue 2859263002: ThumbnailTabHelper: Capture thumbnail when page load finishes (Closed)
Patch Set: flag Created 3 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 // This file defines all the public base::FeatureList features for the chrome 5 // This file defines all the public base::FeatureList features for the chrome
6 // module. 6 // module.
7 7
8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_ 8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_
9 #define CHROME_COMMON_CHROME_FEATURES_H_ 9 #define CHROME_COMMON_CHROME_FEATURES_H_
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 extern const base::Feature kBookmarkApps; 55 extern const base::Feature kBookmarkApps;
56 #endif 56 #endif
57 57
58 extern const base::Feature kBrowserHangFixesExperiment; 58 extern const base::Feature kBrowserHangFixesExperiment;
59 59
60 #if defined(OS_MACOSX) 60 #if defined(OS_MACOSX)
61 extern const base::Feature kBrowserTouchBar; 61 extern const base::Feature kBrowserTouchBar;
62 extern const base::Feature kTabStripKeyboardFocus; 62 extern const base::Feature kTabStripKeyboardFocus;
63 #endif // defined(OS_MACOSX) 63 #endif // defined(OS_MACOSX)
64 64
65 extern const base::Feature kCaptureThumbnailOnLoadFinished;
66
65 extern const base::Feature kCheckInstallabilityForBannerOnLoad; 67 extern const base::Feature kCheckInstallabilityForBannerOnLoad;
66 68
67 #if defined(OS_WIN) 69 #if defined(OS_WIN)
68 extern const base::Feature kCleanupToolUI; 70 extern const base::Feature kCleanupToolUI;
69 #endif 71 #endif
70 72
71 #if defined(OS_ANDROID) 73 #if defined(OS_ANDROID)
72 extern const base::Feature kConsistentOmniboxGeolocation; 74 extern const base::Feature kConsistentOmniboxGeolocation;
73 #endif 75 #endif
74 76
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 #endif // defined(OS_CHROMEOS) 194 #endif // defined(OS_CHROMEOS)
193 195
194 bool PrefServiceEnabled(); 196 bool PrefServiceEnabled();
195 197
196 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 198 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
197 // alphabetical order, or in one of the ifdefs (also in order in each section). 199 // alphabetical order, or in one of the ifdefs (also in order in each section).
198 200
199 } // namespace features 201 } // namespace features
200 202
201 #endif // CHROME_COMMON_CHROME_FEATURES_H_ 203 #endif // CHROME_COMMON_CHROME_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698