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

Side by Side Diff: chrome/browser/ui/tabs/dock_info_aura.cc

Issue 7841012: Get chrome to link with USE_AURA (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/tabs/dock_info.h"
6
7 #include "base/win/scoped_gdi_object.h"
8 #include "chrome/browser/ui/browser_list.h"
9 #include "chrome/browser/ui/browser_window.h"
10 #include "chrome/browser/ui/views/frame/browser_view.h"
11 #include "chrome/browser/ui/views/tabs/tab.h"
12 #include "ui/gfx/screen.h"
13
14 // DockInfo -------------------------------------------------------------------
15
16 // static
17 DockInfo DockInfo::GetDockInfoAtPoint(const gfx::Point& screen_point,
18 const std::set<gfx::NativeView>& ignore) {
19 // TODO(beng):
20 NOTIMPLEMENTED();
21 return DockInfo();
22 }
23
24 gfx::NativeView DockInfo::GetLocalProcessWindowAtPoint(
25 const gfx::Point& screen_point,
26 const std::set<gfx::NativeView>& ignore) {
27 // TODO(beng):
28 NOTIMPLEMENTED();
29 return NULL;
30 }
31
32 bool DockInfo::GetWindowBounds(gfx::Rect* bounds) const {
33 // TODO(beng):
34 NOTIMPLEMENTED();
35 return true;
36 }
37
38 void DockInfo::SizeOtherWindowTo(const gfx::Rect& bounds) const {
39 // TODO(beng):
40 NOTIMPLEMENTED();
41 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/auto_hiding_desktop_bar_aura.cc ('k') | chrome/browser/ui/views/about_chrome_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698