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_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
6 #define CHROME_BROWSER_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlapp.h> | 9 #include <atlapp.h> |
10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 // when shown again. | 250 // when shown again. |
251 HWND parent_hwnd_; | 251 HWND parent_hwnd_; |
252 | 252 |
253 // Instance of accessibility information for the root of the MSAA | 253 // Instance of accessibility information for the root of the MSAA |
254 // tree representation of the WebKit render tree. | 254 // tree representation of the WebKit render tree. |
255 CComPtr<IAccessible> browser_accessibility_root_; | 255 CComPtr<IAccessible> browser_accessibility_root_; |
256 | 256 |
257 // The time at which this view started displaying white pixels as a result of | 257 // The time at which this view started displaying white pixels as a result of |
258 // not having anything to paint (empty backing store from renderer). This | 258 // not having anything to paint (empty backing store from renderer). This |
259 // value returns true for is_null() if we are not recording whiteout times. | 259 // value returns true for is_null() if we are not recording whiteout times. |
260 TimeTicks whiteout_start_time_; | 260 base::TimeTicks whiteout_start_time_; |
261 | 261 |
262 // Whether the renderer is made accessible. | 262 // Whether the renderer is made accessible. |
263 // TODO(jcampan): http://b/issue?id=1432077 This is a temporary work-around | 263 // TODO(jcampan): http://b/issue?id=1432077 This is a temporary work-around |
264 // until that bug is fixed. | 264 // until that bug is fixed. |
265 bool renderer_accessible_; | 265 bool renderer_accessible_; |
266 | 266 |
267 DISALLOW_EVIL_CONSTRUCTORS(RenderWidgetHostViewWin); | 267 DISALLOW_EVIL_CONSTRUCTORS(RenderWidgetHostViewWin); |
268 }; | 268 }; |
269 | 269 |
270 #endif // #ifndef CHROME_BROWSER_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 270 #endif // #ifndef CHROME_BROWSER_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
271 | 271 |
OLD | NEW |