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

Unified Diff: chrome/browser/ui/android/bluetooth_chooser_android.h

Issue 1710443002: bluetooth: Add URLs for Web Bluetooth help links. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Cleanup #2 Created 4 years, 10 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: chrome/browser/ui/android/bluetooth_chooser_android.h
diff --git a/chrome/browser/ui/android/bluetooth_chooser_android.h b/chrome/browser/ui/android/bluetooth_chooser_android.h
index d090c9e55381f3cce122110985fa4651faf5a6df..9b4fc028bb9bfe09f4e5e73ab9589e5f77e159a5 100644
--- a/chrome/browser/ui/android/bluetooth_chooser_android.h
+++ b/chrome/browser/ui/android/bluetooth_chooser_android.h
@@ -42,9 +42,6 @@ class BluetoothChooserAndroid : public content::BluetoothChooser {
void ShowBluetoothOverviewLink(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj);
- void ShowBluetoothPairingLink(
- JNIEnv* env,
- const base::android::JavaParamRef<jobject>& obj);
void ShowBluetoothAdapterOffLink(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj);
@@ -55,8 +52,10 @@ class BluetoothChooserAndroid : public content::BluetoothChooser {
static bool Register(JNIEnv* env);
private:
+ void OpenURL(const char url[]);
Jeffrey Yasskin 2016/02/18 02:17:24 Use "const char* url". The behavior of [] in argum
ortuno 2016/02/18 18:26:33 Done.
base::android::ScopedJavaGlobalRef<jobject> java_dialog_;
+ content::WebContents* web_contents_;
BluetoothChooser::EventHandler event_handler_;
};

Powered by Google App Engine
This is Rietveld 408576698