OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/tabs/dock_info.h" | 5 #include "chrome/browser/ui/tabs/dock_info.h" |
6 | 6 |
7 #if defined(OS_WIN) | |
7 #include "base/win/scoped_gdi_object.h" | 8 #include "base/win/scoped_gdi_object.h" |
9 #endif | |
Ben Goodger (Google)
2011/09/16 01:11:18
Platform ifdefs go after the cross platform ones.
Emmanuel Saint-loubert-Bié
2011/09/16 02:34:54
Done.
| |
8 #include "chrome/browser/ui/browser_list.h" | 10 #include "chrome/browser/ui/browser_list.h" |
9 #include "chrome/browser/ui/browser_window.h" | 11 #include "chrome/browser/ui/browser_window.h" |
10 #include "chrome/browser/ui/views/frame/browser_view.h" | 12 #include "chrome/browser/ui/views/frame/browser_view.h" |
11 #include "chrome/browser/ui/views/tabs/tab.h" | 13 #include "chrome/browser/ui/views/tabs/tab.h" |
12 #include "ui/gfx/screen.h" | 14 #include "ui/gfx/screen.h" |
13 | 15 |
14 // DockInfo ------------------------------------------------------------------- | 16 // DockInfo ------------------------------------------------------------------- |
15 | 17 |
16 // static | 18 // static |
17 DockInfo DockInfo::GetDockInfoAtPoint(const gfx::Point& screen_point, | 19 DockInfo DockInfo::GetDockInfoAtPoint(const gfx::Point& screen_point, |
(...skipping 14 matching lines...) Expand all Loading... | |
32 bool DockInfo::GetWindowBounds(gfx::Rect* bounds) const { | 34 bool DockInfo::GetWindowBounds(gfx::Rect* bounds) const { |
33 // TODO(beng): | 35 // TODO(beng): |
34 NOTIMPLEMENTED(); | 36 NOTIMPLEMENTED(); |
35 return true; | 37 return true; |
36 } | 38 } |
37 | 39 |
38 void DockInfo::SizeOtherWindowTo(const gfx::Rect& bounds) const { | 40 void DockInfo::SizeOtherWindowTo(const gfx::Rect& bounds) const { |
39 // TODO(beng): | 41 // TODO(beng): |
40 NOTIMPLEMENTED(); | 42 NOTIMPLEMENTED(); |
41 } | 43 } |
OLD | NEW |