Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(62)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-no-name.html
Issue
2557963003
:
bluetooth: Implement acceptAllDevices (Closed)
Patch Set:
Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
content/browser/bad_message.h
content/browser/bluetooth/bluetooth_allowed_devices_map.cc
content/browser/bluetooth/bluetooth_allowed_devices_map_unittest.cc
content/browser/bluetooth/bluetooth_device_chooser_controller.cc
content/browser/bluetooth/bluetooth_metrics.cc
content/renderer/bluetooth/bluetooth_type_converters.cc
content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.h
content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider.cc
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-empty-name.html
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-name.html
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-no-name.html
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-uuids.html
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-missing.html
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/optional-services-present.html
third_party/WebKit/LayoutTests/bluetooth/requestDevice/canonicalizeFilter/filters-xor-acceptAllDevices.html
third_party/WebKit/LayoutTests/bluetooth/requestDevice/canonicalizeFilter/no-filters-member.html
third_party/WebKit/Source/modules/bluetooth/Bluetooth.cpp
third_party/WebKit/Source/modules/bluetooth/RequestDeviceOptions.idl
third_party/WebKit/public/platform/modules/bluetooth/WebRequestDeviceOptions.h
third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.mojom
tools/metrics/histograms/histograms.xml
View unified diff
|
Download patch
« no previous file with comments
|
« third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-name.html
('k') |
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-uuids.html »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<!DOCTYPE html>
2
<script src="../../../resources/testharness.js"></script>
3
<script src="../../../resources/testharnessreport.js"></script>
4
<script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
5
<script>
6
'use strict';
7
promise_test(() => {
8
return setBluetoothFakeAdapter('NoNameDeviceAdapter')
9
.then(() => requestDeviceWithKeyDown({acceptAllDevices: true}))
10
.then(device => {
11
assert_true(device.name === null);
12
});
13
}, 'Device with no name or UUIDs nearby. Should be found if ' +
14
'acceptAllDevices is true.');
15
</script>
OLD
NEW
« no previous file with comments
|
« third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-name.html
('k') |
third_party/WebKit/LayoutTests/bluetooth/requestDevice/acceptAllDevices/device-with-uuids.html »
('j') |
no next file with comments »
Issue 2557963003: bluetooth: Implement acceptAllDevices (Closed)
Created 4 years ago by ortuno
Modified 4 years ago
Reviewers:
Base URL:
Comments: 0
This is Rietveld
408576698