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

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

Issue 2627243002: bluetooth: Add control for reading/writing of characteristics to internals page. (Closed)
Patch Set: Add expectThrows, check thrown exceptions Created 3 years, 11 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 #include "chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.h" 5 #include "chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.h"
6 6
7 #include "chrome/browser/profiles/profile.h" 7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/common/url_constants.h" 8 #include "chrome/common/url_constants.h"
9 #include "chrome/grit/browser_resources.h" 9 #include "chrome/grit/browser_resources.h"
10 #include "content/public/browser/web_ui_data_source.h" 10 #include "content/public/browser/web_ui_data_source.h"
(...skipping 30 matching lines...) Expand all
41 html_source->AddResourcePath("interfaces.js", 41 html_source->AddResourcePath("interfaces.js",
42 IDR_BLUETOOTH_INTERNALS_INTERFACES_JS); 42 IDR_BLUETOOTH_INTERNALS_INTERFACES_JS);
43 html_source->AddResourcePath("object_fieldset.js", 43 html_source->AddResourcePath("object_fieldset.js",
44 IDR_BLUETOOTH_INTERNALS_OBJECT_FIELDSET_JS); 44 IDR_BLUETOOTH_INTERNALS_OBJECT_FIELDSET_JS);
45 html_source->AddResourcePath("service_list.js", 45 html_source->AddResourcePath("service_list.js",
46 IDR_BLUETOOTH_INTERNALS_SERVICE_LIST_JS); 46 IDR_BLUETOOTH_INTERNALS_SERVICE_LIST_JS);
47 html_source->AddResourcePath("sidebar.js", 47 html_source->AddResourcePath("sidebar.js",
48 IDR_BLUETOOTH_INTERNALS_SIDEBAR_JS); 48 IDR_BLUETOOTH_INTERNALS_SIDEBAR_JS);
49 html_source->AddResourcePath("snackbar.js", 49 html_source->AddResourcePath("snackbar.js",
50 IDR_BLUETOOTH_INTERNALS_SNACKBAR_JS); 50 IDR_BLUETOOTH_INTERNALS_SNACKBAR_JS);
51 html_source->AddResourcePath("value_control.js",
52 IDR_BLUETOOTH_INTERNALS_VALUE_CONTROL_JS);
51 53
52 html_source->AddResourcePath( 54 html_source->AddResourcePath(
53 "device/bluetooth/public/interfaces/adapter.mojom", 55 "device/bluetooth/public/interfaces/adapter.mojom",
54 IDR_BLUETOOTH_ADAPTER_MOJO_JS); 56 IDR_BLUETOOTH_ADAPTER_MOJO_JS);
55 html_source->AddResourcePath( 57 html_source->AddResourcePath(
56 "device/bluetooth/public/interfaces/device.mojom", 58 "device/bluetooth/public/interfaces/device.mojom",
57 IDR_BLUETOOTH_DEVICE_MOJO_JS); 59 IDR_BLUETOOTH_DEVICE_MOJO_JS);
58 html_source->AddResourcePath("device/bluetooth/public/interfaces/uuid.mojom", 60 html_source->AddResourcePath("device/bluetooth/public/interfaces/uuid.mojom",
59 IDR_BLUETOOTH_UUID_MOJO_JS); 61 IDR_BLUETOOTH_UUID_MOJO_JS);
60 html_source->SetDefaultResource(IDR_BLUETOOTH_INTERNALS_HTML); 62 html_source->SetDefaultResource(IDR_BLUETOOTH_INTERNALS_HTML);
61 html_source->UseGzip(std::unordered_set<std::string>()); 63 html_source->UseGzip(std::unordered_set<std::string>());
62 64
63 Profile* profile = Profile::FromWebUI(web_ui); 65 Profile* profile = Profile::FromWebUI(web_ui);
64 content::WebUIDataSource::Add(profile, html_source); 66 content::WebUIDataSource::Add(profile, html_source);
65 } 67 }
66 68
67 BluetoothInternalsUI::~BluetoothInternalsUI() {} 69 BluetoothInternalsUI::~BluetoothInternalsUI() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698