Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / ui / base / clipboard / clipboard_android_initialization.h
blobdca59c1b51b6826050d3fe45f80c0345c1e7b6ca
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.
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).
11 #ifndef UI_BASE_CLIPBOARD_CLIPBOARD_ANDROID_INITIALIZATION_H_
12 #define UI_BASE_CLIPBOARD_CLIPBOARD_ANDROID_INITIALIZATION_H_
14 #include <jni.h>
16 namespace ui {
18 bool RegisterClipboardAndroid(JNIEnv* env);
20 } // namespace ui
22 #endif // UI_BASE_CLIPBOARD_CLIPBOARD_ANDROID_INITIALIZATION_H_