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
(88)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: ui/aura/monitor.cc
Issue
9699013
:
MonitorManager to manage multiple monitors. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: .
Created 8 years, 9 months 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:
ash/screen_ash.h
ash/screen_ash.cc
ash/shell.h
ash/shell.cc
ash/shell_observer.h
ash/wm/base_layout_manager.h
ash/wm/base_layout_manager.cc
ash/wm/base_layout_manager_unittest.cc
ash/wm/shelf_layout_manager.cc
ash/wm/shelf_layout_manager_unittest.cc
ash/wm/workspace/workspace_layout_manager.h
ash/wm/workspace/workspace_layout_manager.cc
ash/wm/workspace/workspace_manager.h
ash/wm/workspace/workspace_manager.cc
ash/wm/workspace/workspace_manager_unittest.cc
ash/wm/workspace/workspace_window_resizer_unittest.cc
chrome/browser/ui/views/accessibility_event_router_views_unittest.cc
chrome/test/base/browser_with_test_window_test.cc
ui/aura/aura.gyp
ui/aura/env.h
ui/aura/env.cc
ui/aura/monitor.h
ui/aura/monitor.cc
ui/aura/monitor_manager.h
ui/aura/monitor_manager.cc
ui/aura/monitor_manager_x11.cc
ui/aura/test/aura_test_base.cc
ui/views/test/views_test_base.cc
ui/views/widget/native_widget_aura_unittest.cc
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« ash/wm/shelf_layout_manager_unittest.cc
('K') |
« ui/aura/monitor.h
('k') |
ui/aura/monitor_manager.h »
('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
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#include "ui/aura/monitor.h"
6
7
namespace aura {
8
9
Monitor::Monitor() {
10
}
11
12
gfx::Rect Monitor::GetWorkAreaBounds() const {
13
gfx::Rect bounds(bounds_);
14
bounds.Inset(work_area_insets_);
15
return bounds;
16
}
17
18
} // namespace aura
OLD
NEW
« ash/wm/shelf_layout_manager_unittest.cc
('K') |
« ui/aura/monitor.h
('k') |
ui/aura/monitor_manager.h »
('j') |
no next file with comments »
Issue 9699013: MonitorManager to manage multiple monitors. (Closed)
Created 8 years, 9 months ago by oshima
Modified 8 years, 9 months ago
Reviewers: Ben Goodger (Google)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 3
This is Rietveld
408576698