OLD | NEW |
1 // Copyright (c) 2006-2008 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 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_NATIVE_VIEW_PHOTOBOOTH_WIN_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_NATIVE_VIEW_PHOTOBOOTH_WIN_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_NATIVE_VIEW_PHOTOBOOTH_WIN_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_NATIVE_VIEW_PHOTOBOOTH_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/views/tabs/native_view_photobooth.h" | 9 #include "chrome/browser/ui/views/tabs/native_view_photobooth.h" |
10 | 10 |
11 namespace views { | 11 namespace views { |
12 class WidgetWin; | 12 class WidgetWin; |
13 } | 13 } |
14 | 14 |
15 /////////////////////////////////////////////////////////////////////////////// | 15 /////////////////////////////////////////////////////////////////////////////// |
16 // HWNDPhotobooth | 16 // HWNDPhotobooth |
17 // | 17 // |
18 // An object that a HWND "steps into" to have its picture taken. This is used | 18 // An object that a HWND "steps into" to have its picture taken. This is used |
19 // to generate a full size screen shot of the contents of a HWND including | 19 // to generate a full size screen shot of the contents of a HWND including |
(...skipping 29 matching lines...) Expand all Loading... |
49 // The nearly off-screen photo-booth layered window used to hold the HWND. | 49 // The nearly off-screen photo-booth layered window used to hold the HWND. |
50 views::WidgetWin* capture_window_; | 50 views::WidgetWin* capture_window_; |
51 | 51 |
52 // The current HWND being captured. | 52 // The current HWND being captured. |
53 HWND current_hwnd_; | 53 HWND current_hwnd_; |
54 | 54 |
55 DISALLOW_COPY_AND_ASSIGN(NativeViewPhotoboothWin); | 55 DISALLOW_COPY_AND_ASSIGN(NativeViewPhotoboothWin); |
56 }; | 56 }; |
57 | 57 |
58 #endif // CHROME_BROWSER_UI_VIEWS_TABS_NATIVE_VIEW_PHOTOBOOTH_WIN_H_ | 58 #endif // CHROME_BROWSER_UI_VIEWS_TABS_NATIVE_VIEW_PHOTOBOOTH_WIN_H_ |
OLD | NEW |