OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1259 | 1259 |
1260 // These store the "is main frame is scrolled all the way to the left | 1260 // These store the "is main frame is scrolled all the way to the left |
1261 // or right" state that was last sent to the browser. | 1261 // or right" state that was last sent to the browser. |
1262 bool cached_is_main_frame_pinned_to_left_; | 1262 bool cached_is_main_frame_pinned_to_left_; |
1263 bool cached_is_main_frame_pinned_to_right_; | 1263 bool cached_is_main_frame_pinned_to_right_; |
1264 | 1264 |
1265 // These store the "has scrollbars" state last sent to the browser. | 1265 // These store the "has scrollbars" state last sent to the browser. |
1266 bool cached_has_main_frame_horizontal_scrollbar_; | 1266 bool cached_has_main_frame_horizontal_scrollbar_; |
1267 bool cached_has_main_frame_vertical_scrollbar_; | 1267 bool cached_has_main_frame_vertical_scrollbar_; |
1268 | 1268 |
| 1269 // Bookkeeping to suppress redundant scroll and focus requests for an already |
| 1270 // scrolled and focused editable node. |
| 1271 bool has_scrolled_focused_editable_node_into_rect_; |
| 1272 gfx::Rect rect_for_scrolled_focused_editable_node_; |
| 1273 |
1269 // Helper objects ------------------------------------------------------------ | 1274 // Helper objects ------------------------------------------------------------ |
1270 | 1275 |
1271 scoped_ptr<RenderFrameImpl> main_render_frame_; | 1276 scoped_ptr<RenderFrameImpl> main_render_frame_; |
1272 | 1277 |
1273 // The next group of objects all implement RenderViewObserver, so are deleted | 1278 // The next group of objects all implement RenderViewObserver, so are deleted |
1274 // along with the RenderView automatically. This is why we just store | 1279 // along with the RenderView automatically. This is why we just store |
1275 // weak references. | 1280 // weak references. |
1276 | 1281 |
1277 // Holds a reference to the service which provides desktop notifications. | 1282 // Holds a reference to the service which provides desktop notifications. |
1278 NotificationProvider* notification_provider_; | 1283 NotificationProvider* notification_provider_; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1431 // use the Observer interface to filter IPC messages and receive frame change | 1436 // use the Observer interface to filter IPC messages and receive frame change |
1432 // notifications. | 1437 // notifications. |
1433 // --------------------------------------------------------------------------- | 1438 // --------------------------------------------------------------------------- |
1434 | 1439 |
1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1440 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1436 }; | 1441 }; |
1437 | 1442 |
1438 } // namespace content | 1443 } // namespace content |
1439 | 1444 |
1440 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1445 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |