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

Side by Side Diff: chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.h

Issue 2357383002: bluetooth: Add device list retrieval for chrome://bluetooth-internals (Closed)
Patch Set: Revert chrome browser client file Created 4 years, 2 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 unified diff | Download patch
OLDNEW
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698