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

Unified Diff: ui/gfx/display.h

Issue 10795080: A couple of multiple displays support fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/wm/window_animations.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/display.h
diff --git a/ui/gfx/display.h b/ui/gfx/display.h
index 79aef7987dc42c80e51d0790f85c42b8b7ef0a32..1cbb9afefd676df56372840eb978952ce665eb40 100644
--- a/ui/gfx/display.h
+++ b/ui/gfx/display.h
@@ -29,11 +29,11 @@ class UI_EXPORT Display {
~Display();
// Sets/Gets unique identifier associated with the display.
+ // -1 means invalid display and it doesn't not exit.
int id() const { return id_; }
void set_id(int id) { id_ = id; }
// Gets/Sets the display's bounds in gfx::Screen's coordinates.
- // -1 means invalid display and it doesn't not exit.
const Rect& bounds() const { return bounds_; }
void set_bounds(const Rect& bounds) { bounds_ = bounds; }
« no previous file with comments | « ash/wm/window_animations.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698