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

Side by Side Diff: ui/base/clipboard/clipboard_android.cc

Issue 2146753002: Android: Remove unneeded RegisterNatives() calls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, more fixes Created 4 years, 4 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 (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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698