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

Side by Side Diff: ui/base/clipboard/clipboard_android_initialization.h

Issue 658963003: Change Clipboard to use virtual methods for testing purposes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more typo... Created 6 years, 2 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
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This file exists to help bind the Android clipboard implementation's JNI
6 // methods statically. Since the JNI header file that contains the static
7 // registration method is autogenerated and since the general clipboard.h
8 // file is platform-independent, a new header file (this) is the cleanest
9 // option for holding this function (as it is specific to Android).
10
11 #ifndef UI_BASE_CLIPBOARD_CLIPBOARD_ANDROID_INITIALIZATION_H_
12 #define UI_BASE_CLIPBOARD_CLIPBOARD_ANDROID_INITIALIZATION_H_
13
14 #include <jni.h>
15
16 namespace ui {
17
18 bool RegisterClipboardAndroid(JNIEnv* env);
19
20 } // namespace ui
21
22 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_ANDROID_INITIALIZATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698