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

Side by Side Diff: components/web_contents_delegate_android/color_chooser_android.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 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 (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 "components/web_contents_delegate_android/color_chooser_android.h" 5 #include "components/web_contents_delegate_android/color_chooser_android.h"
6 6
7 #include <stddef.h>
8
7 #include "base/android/jni_array.h" 9 #include "base/android/jni_array.h"
8 #include "base/android/jni_string.h" 10 #include "base/android/jni_string.h"
9 #include "content/public/browser/android/content_view_core.h" 11 #include "content/public/browser/android/content_view_core.h"
10 #include "content/public/browser/web_contents.h" 12 #include "content/public/browser/web_contents.h"
11 #include "content/public/common/color_suggestion.h" 13 #include "content/public/common/color_suggestion.h"
12 #include "jni/ColorChooserAndroid_jni.h" 14 #include "jni/ColorChooserAndroid_jni.h"
13 #include "ui/android/window_android.h" 15 #include "ui/android/window_android.h"
14 16
15 using base::android::ConvertUTF16ToJavaString; 17 using base::android::ConvertUTF16ToJavaString;
16 using base::android::JavaRef; 18 using base::android::JavaRef;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 87 }
86 88
87 // ---------------------------------------------------------------------------- 89 // ----------------------------------------------------------------------------
88 // Native JNI methods 90 // Native JNI methods
89 // ---------------------------------------------------------------------------- 91 // ----------------------------------------------------------------------------
90 bool RegisterColorChooserAndroid(JNIEnv* env) { 92 bool RegisterColorChooserAndroid(JNIEnv* env) {
91 return RegisterNativesImpl(env); 93 return RegisterNativesImpl(env);
92 } 94 }
93 95
94 } // namespace web_contents_delegate_android 96 } // namespace web_contents_delegate_android
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698