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

Unified Diff: content/browser/android/context_selection_client.h

Issue 2740103006: Implement SmartText selection. (Closed)
Patch Set: Went back to the large constant for the text processing order Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
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..e41851dab9cf6e63cc74374bec9ec60d3a2a7090
--- /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"
Ted C 2017/03/29 17:43:50 do we need this since we are forward declaring it
Tima Vaisburd 2017/03/29 22:56:36 Removed and replaced with the proper headers.
+
+namespace content {
+
+class WebContents;
+
+class ContextSelectionClient {
Ted C 2017/03/29 17:43:50 Can we add a class level document that describes w
Tima Vaisburd 2017/03/29 22:56:36 Absolutely! Added comments to this file, is this t
+ public:
+ ContextSelectionClient(JNIEnv* env,
+ const base::android::JavaRef<jobject>& obj,
+ WebContents* web_contents);
+ ~ContextSelectionClient();
Ted C 2017/03/29 17:43:50 should we mark this with override? or can this be
Tima Vaisburd 2017/03/29 22:56:37 I made it private. For this I had to declare the n
+
+ 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;
Ted C 2017/03/29 17:43:50 why is this in the header?
Tima Vaisburd 2017/03/29 22:56:37 Compiler did not understand the nested class UserD
+
+ 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_;
+
+ base::WeakPtrFactory<ContextSelectionClient> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(ContextSelectionClient);
+};
+
+bool RegisterContextSelectionClient(JNIEnv* env);
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_ANDROID_CONTEXT_SELECTION_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698