OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_WEBUI_BLUETOOTH_INTERNALS_BLUETOOTH_INTERNALS_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_BLUETOOTH_INTERNALS_BLUETOOTH_INTERNALS_UI_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_BLUETOOTH_INTERNALS_BLUETOOTH_INTERNALS_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_BLUETOOTH_INTERNALS_BLUETOOTH_INTERNALS_UI_H_ |
7 | 7 |
8 #include <memory> | |
ortuno
2016/09/28 09:44:55
I don't think you need this?
mbrunson
2016/09/28 21:20:35
Done.
| |
9 | |
8 #include "base/macros.h" | 10 #include "base/macros.h" |
9 #include "content/public/browser/web_ui_controller.h" | 11 #include "content/public/browser/web_ui_controller.h" |
10 | 12 |
11 // The WebUI for chrome://bluetooth-internals | 13 // The WebUI for chrome://bluetooth-internals |
12 class BluetoothInternalsUI : public content::WebUIController { | 14 class BluetoothInternalsUI : public content::WebUIController { |
13 public: | 15 public: |
14 explicit BluetoothInternalsUI(content::WebUI* web_ui); | 16 explicit BluetoothInternalsUI(content::WebUI* web_ui); |
15 ~BluetoothInternalsUI() override; | 17 ~BluetoothInternalsUI() override; |
16 | 18 |
17 private: | 19 private: |
18 DISALLOW_COPY_AND_ASSIGN(BluetoothInternalsUI); | 20 DISALLOW_COPY_AND_ASSIGN(BluetoothInternalsUI); |
19 }; | 21 }; |
20 | 22 |
21 #endif // CHROME_BROWSER_UI_WEBUI_BLUETOOTH_INTERNALS_BLUETOOTH_INTERNALS_UI_H_ | 23 #endif // CHROME_BROWSER_UI_WEBUI_BLUETOOTH_INTERNALS_BLUETOOTH_INTERNALS_UI_H_ |
OLD | NEW |