diff options
author | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-20 06:01:57 +0000 |
---|---|---|
committer | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-20 06:01:57 +0000 |
commit | b2a18a2f7c86f326209782c47f6ee7a3f469ebac (patch) | |
tree | 5b470f4f163f5beb8033529f8fef93316f75f6d2 /ui/gfx/display.h | |
parent | b8db9812bc1c704b8aa5b74f742a5f7bcf18b41b (diff) | |
download | chromium_src-b2a18a2f7c86f326209782c47f6ee7a3f469ebac.zip chromium_src-b2a18a2f7c86f326209782c47f6ee7a3f469ebac.tar.gz chromium_src-b2a18a2f7c86f326209782c47f6ee7a3f469ebac.tar.bz2 |
Removes gfx::Display::GetID
It was introduced for ChromeOS but nobody seems using it. ChromeOS
has its own id calculation in chromeos/display/output_util.
BUG=None
TEST=compilation passed
R=oshima@chromium.org
Review URL: https://chromiumcodereview.appspot.com/15373003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201042 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/display.h')
-rw-r--r-- | ui/gfx/display.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ui/gfx/display.h b/ui/gfx/display.h index 59ee1d3..2282cb0 100644 --- a/ui/gfx/display.h +++ b/ui/gfx/display.h @@ -40,17 +40,6 @@ class UI_EXPORT Display { // command line via "--force-device-scale-factor". static bool HasForceDeviceScaleFactor(); - // Returns 64-bit persistent ID for the specified manufacturer's ID and - // product_code, and the index of the output it is connected to. - // |output_index| is used to distinguish the displays of the same type. For - // example, swapping two identical display between two outputs will not be - // treated as swap. The 'serial number' field in EDID isn't used here because - // it is not guaranteed to have unique number and it may have the same fixed - // value (like 0). - static int64 GetID(uint16 manufacturer_id, - uint16 product_code, - uint8 output_index); - // Sets/Gets unique identifier associated with the display. // -1 means invalid display and it doesn't not exit. int64 id() const { return id_; } |