| OLD | NEW |
| 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 "ui/base/clipboard/clipboard_android.h" | 5 #include "ui/base/clipboard/clipboard_android.h" |
| 6 | 6 |
| 7 #include "base/android/context_utils.h" | 7 #include "base/android/context_utils.h" |
| 8 #include "base/android/jni_string.h" | 8 #include "base/android/jni_string.h" |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 } | 464 } |
| 465 g_map.Get().Set(kBitmapFormat, packed); | 465 g_map.Get().Set(kBitmapFormat, packed); |
| 466 } | 466 } |
| 467 | 467 |
| 468 void ClipboardAndroid::WriteData(const Clipboard::FormatType& format, | 468 void ClipboardAndroid::WriteData(const Clipboard::FormatType& format, |
| 469 const char* data_data, | 469 const char* data_data, |
| 470 size_t data_len) { | 470 size_t data_len) { |
| 471 g_map.Get().Set(format.ToString(), std::string(data_data, data_len)); | 471 g_map.Get().Set(format.ToString(), std::string(data_data, data_len)); |
| 472 } | 472 } |
| 473 | 473 |
| 474 bool RegisterClipboardAndroid(JNIEnv* env) { | |
| 475 return RegisterNativesImpl(env); | |
| 476 } | |
| 477 | |
| 478 } // namespace ui | 474 } // namespace ui |
| OLD | NEW |