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

Side by Side Diff: content/common/android/common_jni_registrar.cc

Issue 11886074: Use correct favicon scale factor on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final rebase after DIP scale fix. Created 7 years, 11 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 | Annotate | Revision Log
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 "content/common/android/common_jni_registrar.h" 5 #include "content/common/android/common_jni_registrar.h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_registrar.h" 8 #include "base/android/jni_registrar.h"
9 #include "content/common/android/command_line.h" 9 #include "content/common/android/command_line.h"
10 #include "content/common/android/device_info.h" 10 #include "content/common/android/device_telephony_info.h"
11 #include "content/common/android/hash_set.h" 11 #include "content/common/android/hash_set.h"
12 #include "content/common/android/surface_callback.h" 12 #include "content/common/android/surface_callback.h"
13 #include "content/common/android/surface_texture_listener.h" 13 #include "content/common/android/surface_texture_listener.h"
14 #include "content/common/android/trace_event_binding.h" 14 #include "content/common/android/trace_event_binding.h"
15 15
16 namespace { 16 namespace {
17 base::android::RegistrationMethod kContentRegisteredMethods[] = { 17 base::android::RegistrationMethod kContentRegisteredMethods[] = {
18 { "CommandLine", RegisterCommandLine }, 18 { "CommandLine", RegisterCommandLine },
19 { "DeviceInfo", content::RegisterDeviceInfo }, 19 { "DeviceTelephonyInfo",
20 content::DeviceTelephonyInfo::RegisterDeviceTelephonyInfo },
20 { "HashSet", content::RegisterHashSet }, 21 { "HashSet", content::RegisterHashSet },
21 { "SurfaceCallback", content::RegisterSurfaceCallback }, 22 { "SurfaceCallback", content::RegisterSurfaceCallback },
22 { "SurfaceTextureListener", 23 { "SurfaceTextureListener",
23 content::SurfaceTextureListener::RegisterSurfaceTextureListener }, 24 content::SurfaceTextureListener::RegisterSurfaceTextureListener },
24 { "TraceEvent", RegisterTraceEvent }, 25 { "TraceEvent", RegisterTraceEvent },
25 }; 26 };
26 27
27 } // namespace 28 } // namespace
28 29
29 namespace content { 30 namespace content {
30 namespace android { 31 namespace android {
31 32
32 bool RegisterCommonJni(JNIEnv* env) { 33 bool RegisterCommonJni(JNIEnv* env) {
33 return RegisterNativeMethods(env, kContentRegisteredMethods, 34 return RegisterNativeMethods(env, kContentRegisteredMethods,
34 arraysize(kContentRegisteredMethods)); 35 arraysize(kContentRegisteredMethods));
35 } 36 }
36 37
37 } // namespace android 38 } // namespace android
38 } // namespace content 39 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_android.cc ('k') | content/common/android/device_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698