forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extracts more information from serial devices on Windows
At rockot@'s suggestion, I tested this with a small Chrome app that I wrote (https://github.com/zeptonaut/serial-device-enumerator-app) that opens a window showing all information that Chrome knows about serial devices. We chose this route over unit tests because we didn't think it was wise to write unit tests that assumed specific devices were plugged into our test servers. As far as devices, I used an FTDI Chipset High Speed USB 2.0 to Serial RS-232 DB-9 Converter. This was useful because it's one of not-so-many devices that has both serial properties (COM port) and USB properties (vendor ID, device ID, and display name). BUG=522217 Review URL: https://codereview.chromium.org/1357993002 Cr-Commit-Position: refs/heads/master@{#351163}
- Loading branch information
charliea
authored and
Commit bot
committed
Sep 28, 2015
1 parent
c496054
commit e940c46
Showing
4 changed files
with
109 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
include_rules = [ | ||
"+dbus", | ||
"+net/base", | ||
"+third_party/re2", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters