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

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

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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>
8
7 #include <string> 9 #include <string>
8 10
9 #include "base/android/jni_string.h" 11 #include "base/android/jni_string.h"
10 #include "base/feature_list.h" 12 #include "base/feature_list.h"
13 #include "base/macros.h"
11 #include "jni/ChromeFeatureList_jni.h" 14 #include "jni/ChromeFeatureList_jni.h"
12 15
13 using base::android::ConvertJavaStringToUTF8; 16 using base::android::ConvertJavaStringToUTF8;
14 17
15 namespace chrome { 18 namespace chrome {
16 namespace android { 19 namespace android {
17 20
18 namespace { 21 namespace {
19 22
20 const base::Feature kPhysicalWebFeature { 23 const base::Feature kPhysicalWebFeature {
(...skipping 21 matching lines...) Expand all
42 NOTREACHED(); 45 NOTREACHED();
43 return false; 46 return false;
44 } 47 }
45 48
46 bool RegisterChromeFeatureListJni(JNIEnv* env) { 49 bool RegisterChromeFeatureListJni(JNIEnv* env) {
47 return RegisterNativesImpl(env); 50 return RegisterNativesImpl(env);
48 } 51 }
49 52
50 } // namespace android 53 } // namespace android
51 } // namespace chrome 54 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_application.h ('k') | chrome/browser/android/chrome_jni_registrar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698