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 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
260 | 260 |
261 // The current caret bounds. | 261 // The current caret bounds. |
262 gfx::Rect caret_bounds_; | 262 gfx::Rect caret_bounds_; |
263 | 263 |
264 // Indicates if there is onging composition text. | 264 // Indicates if there is onging composition text. |
265 bool has_composition_text_; | 265 bool has_composition_text_; |
266 | 266 |
267 string16 tooltip_text_; | 267 string16 tooltip_text_; |
268 | 268 |
269 scoped_ptr<views::TouchSelectionController> touch_selection_controller_; | 269 scoped_ptr<views::TouchSelectionController> touch_selection_controller_; |
270 gfx::Point touch_selection_start_; | |
sky
2011/08/25 22:54:17
These aren't necessarily touch related. So name th
varunjain
2011/08/25 23:49:22
Done.
| |
271 gfx::Point touch_selection_end_; | |
270 | 272 |
271 #if defined(TOUCH_UI) | 273 #if defined(TOUCH_UI) |
272 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerTouch> > | 274 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerTouch> > |
273 accelerated_surface_containers_; | 275 accelerated_surface_containers_; |
274 #endif | 276 #endif |
275 | 277 |
276 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); | 278 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); |
277 }; | 279 }; |
278 | 280 |
279 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 281 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
OLD | NEW |