Chromium Code Reviews| Index: content/browser/android/context_selection_client.h |
| diff --git a/content/browser/android/context_selection_client.h b/content/browser/android/context_selection_client.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..90588177f411bdfa8c993c9b20484cb34212c28d |
| --- /dev/null |
| +++ b/content/browser/android/context_selection_client.h |
| @@ -0,0 +1,56 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_BROWSER_ANDROID_CONTEXT_SELECTION_CLIENT_H_ |
| +#define CONTENT_BROWSER_ANDROID_CONTEXT_SELECTION_CLIENT_H_ |
| + |
| +#include <jni.h> |
| + |
| +#include "base/android/jni_weak_ref.h" |
| +#include "base/macros.h" |
| +#include "base/memory/weak_ptr.h" |
| +#include "content/public/browser/web_contents.h" |
| + |
| +namespace content { |
| + |
| +class WebContents; |
| + |
| +class ContextSelectionClient |
| + : public base::SupportsWeakPtr<ContextSelectionClient> { |
|
boliu
2017/03/11 00:37:51
prefer WeakPtrFactory
Tima Vaisburd
2017/03/20 05:06:04
Done.
|
| + public: |
| + ContextSelectionClient(JNIEnv* env, |
| + const base::android::JavaRef<jobject>& obj, |
| + WebContents* web_contents); |
| + ~ContextSelectionClient(); |
| + |
| + void RequestSurroundingText(JNIEnv* env, |
| + const base::android::JavaParamRef<jobject>& obj, |
| + int callback_data); |
| + void CancelAllRequests(JNIEnv* env, |
| + const base::android::JavaParamRef<jobject>& obj); |
| + |
| + private: |
| + class UserData; |
| + friend class UserData; |
|
boliu
2017/03/11 00:37:51
hmm, is friend needed?
Tima Vaisburd
2017/03/20 05:06:04
It was a copy-paste error. Removed.
|
| + |
| + void OnSurroundingTextReceived(int callback_data, |
| + const base::string16& text, |
| + int start, |
| + int end); |
| + |
| + // A weak reference to the Java ContentSelectionClient object. |
| + JavaObjectWeakGlobalRef java_ref_; |
| + |
| + // WebContents is used to find the relevant RenderFrameHost that can send |
| + // the request for the text. |
| + WebContents* web_contents_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ContextSelectionClient); |
| +}; |
| + |
| +bool RegisterContextSelectionClient(JNIEnv* env); |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_BROWSER_ANDROID_CONTEXT_SELECTION_CLIENT_H_ |