Chromium Code Reviews| 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_; |
| }; |