Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_BROWSER_VIEWS_OLD_FRAMES_VISTA_FRAME_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_OLD_FRAMES_VISTA_FRAME_H__ |
| 6 #define CHROME_BROWSER_VIEWS_OLD_FRAMES_VISTA_FRAME_H__ | 6 #define CHROME_BROWSER_VIEWS_OLD_FRAMES_VISTA_FRAME_H__ |
| 7 | 7 |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 #include <atlbase.h> | 9 #include <atlbase.h> |
| 10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 #include "chrome/views/hwnd_view.h" | 21 #include "chrome/views/hwnd_view.h" |
| 22 #include "chrome/views/image_view.h" | 22 #include "chrome/views/image_view.h" |
| 23 #include "chrome/views/tooltip_manager.h" | 23 #include "chrome/views/tooltip_manager.h" |
| 24 | 24 |
| 25 #define VISTA_FRAME_CLASSNAME L"Chrome_VistaFrame" | 25 #define VISTA_FRAME_CLASSNAME L"Chrome_VistaFrame" |
| 26 | 26 |
| 27 class BookmarkBarView; | 27 class BookmarkBarView; |
| 28 class Browser; | 28 class Browser; |
| 29 class BrowserView; | 29 class BrowserView; |
| 30 class TabContentsContainerView; | 30 class TabContentsContainerView; |
| 31 class views::FocusManager; | |
| 32 class SkBitmap; | 31 class SkBitmap; |
| 33 class TabStrip; | 32 class TabStrip; |
| 34 | 33 |
| 34 namespace views { | |
| 35 class FocusManager; | |
|
wtc
2008/11/05 21:40:32
The contents of namespaces don't need to be indent
vega.james_gmail.com
2008/11/05 21:55:33
agl specifically requested it since these are such
| |
| 36 } | |
| 37 | |
| 35 //////////////////////////////////////////////////////////////////////////////// | 38 //////////////////////////////////////////////////////////////////////////////// |
| 36 // | 39 // |
| 37 // VistaFrame class | 40 // VistaFrame class |
| 38 // | 41 // |
| 39 // A CWindowImpl subclass that implements our main frame on Windows Vista | 42 // A CWindowImpl subclass that implements our main frame on Windows Vista |
| 40 // | 43 // |
| 41 //////////////////////////////////////////////////////////////////////////////// | 44 //////////////////////////////////////////////////////////////////////////////// |
| 42 class VistaFrame : public BrowserWindow, | 45 class VistaFrame : public BrowserWindow, |
| 43 public CWindowImpl<VistaFrame, | 46 public CWindowImpl<VistaFrame, |
| 44 CWindow, | 47 CWindow, |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 405 // like unconstrained popups. Defaults to true. | 408 // like unconstrained popups. Defaults to true. |
| 406 bool should_save_window_placement_; | 409 bool should_save_window_placement_; |
| 407 | 410 |
| 408 // A view that holds the client-area contents of the browser window. | 411 // A view that holds the client-area contents of the browser window. |
| 409 BrowserView* browser_view_; | 412 BrowserView* browser_view_; |
| 410 | 413 |
| 411 DISALLOW_EVIL_CONSTRUCTORS(VistaFrame); | 414 DISALLOW_EVIL_CONSTRUCTORS(VistaFrame); |
| 412 }; | 415 }; |
| 413 #endif // CHROME_BROWSER_VIEWS_OLD_FRAMES_VISTA_FRAME_H__ | 416 #endif // CHROME_BROWSER_VIEWS_OLD_FRAMES_VISTA_FRAME_H__ |
| 414 | 417 |
| OLD | NEW |