Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #ifndef CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| 6 #define CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 6 #define CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include "base/feature_list.h" | |
| 11 | |
| 10 namespace chrome { | 12 namespace chrome { |
| 11 namespace android { | 13 namespace android { |
| 12 | 14 |
| 13 bool RegisterChromeFeatureListJni(JNIEnv* env); | 15 bool RegisterChromeFeatureListJni(JNIEnv* env); |
| 14 | 16 |
| 17 extern const base::Feature kPhysicalWebFeature; | |
|
mmocny
2015/12/21 15:45:55
Is this really the first Clank feature?
Alexei Svitkine (slow)
2015/12/21 15:48:18
First one using the new Feature API. I only landed
Alexei Svitkine (slow)
2015/12/21 15:48:18
Nit: I'd put this on after line 14.
cco3
2015/12/21 18:10:11
Done.
| |
| 18 | |
| 15 } // namespace android | 19 } // namespace android |
| 16 } // namespace chrome | 20 } // namespace chrome |
| 17 | 21 |
| 18 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ | 22 #endif // CHROME_BROWSER_ANDROID_CHROME_FEATURE_LIST_H_ |
| OLD | NEW |