OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_EXTENSIONS_BLUETOOTH_CHROME_EXTENSION_CHOOSER_DIALOG_H_ | |
6 #define CHROME_BROWSER_EXTENSIONS_BLUETOOTH_CHROME_EXTENSION_CHOOSER_DIALOG_H_ | |
7 | |
8 #include "base/macros.h" | |
9 | |
10 #include "chrome/browser/extensions/chrome_extension_chooser_dialog.h" | |
11 | |
12 // Bluetooth implementation of ChromeExtensionChooserDialog. | |
13 class BluetoothChromeExtensionChooserDialog | |
14 : public ChromeExtensionChooserDialog { | |
15 public: | |
16 explicit BluetoothChromeExtensionChooserDialog( | |
17 content::WebContents* web_contents); | |
18 ~BluetoothChromeExtensionChooserDialog() override; | |
19 | |
20 GURL GetHelpCenterUrl() const override; | |
Reilly Grant (use Gerrit)
2016/05/23 19:36:49
Can you move this virtual function to ChooserContr
juncai
2016/05/27 21:30:36
Done.
| |
21 | |
22 DISALLOW_COPY_AND_ASSIGN(BluetoothChromeExtensionChooserDialog); | |
23 }; | |
24 | |
25 #endif // CHROME_BROWSER_EXTENSIONS_BLUETOOTH_CHROME_EXTENSION_CHOOSER_DIALOG_H _ | |
OLD | NEW |