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

Side by Side Diff: ui/base/android/ui_base_jni_registrar.cc

Issue 2812773002: Refactor Clipboard Last Modified Time Storage (Closed)
Patch Set: itri-state enum Created 3 years, 8 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "ui/base/android/ui_base_jni_registrar.h" 5 #include "ui/base/android/ui_base_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 "base/macros.h" 9 #include "base/macros.h"
10 #include "ui/base/clipboard/clipboard_android.h"
10 #include "ui/base/l10n/l10n_util_android.h" 11 #include "ui/base/l10n/l10n_util_android.h"
11 12
12 namespace ui { 13 namespace ui {
13 namespace android { 14 namespace android {
14 15
15 static base::android::RegistrationMethod kUiRegisteredMethods[] = { 16 static base::android::RegistrationMethod kUiRegisteredMethods[] = {
16 { "LocalizationUtils", l10n_util::RegisterLocalizationUtil }, 17 {"LocalizationUtils", l10n_util::RegisterLocalizationUtil},
18 {"ClipboardAndroid", ui::RegisterClipboardAndroid},
17 }; 19 };
18 20
19 bool RegisterJni(JNIEnv* env) { 21 bool RegisterJni(JNIEnv* env) {
20 return RegisterNativeMethods(env, kUiRegisteredMethods, 22 return RegisterNativeMethods(env, kUiRegisteredMethods,
21 arraysize(kUiRegisteredMethods)); 23 arraysize(kUiRegisteredMethods));
22 } 24 }
23 25
24 } // namespace android 26 } // namespace android
25 } // namespace ui 27 } // namespace ui
OLDNEW
« no previous file with comments | « ui/android/junit/src/org/chromium/ui/base/ClipboardTest.java ('k') | ui/base/clipboard/clipboard.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698