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 1408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1419 MouseLockDispatcher* mouse_lock_dispatcher_; | 1419 MouseLockDispatcher* mouse_lock_dispatcher_; |
1420 | 1420 |
1421 #if defined(OS_ANDROID) | 1421 #if defined(OS_ANDROID) |
1422 // Android Specific --------------------------------------------------------- | 1422 // Android Specific --------------------------------------------------------- |
1423 | 1423 |
1424 // The background color of the document body element. This is used as the | 1424 // The background color of the document body element. This is used as the |
1425 // default background color for filling the screen areas for which we don't | 1425 // default background color for filling the screen areas for which we don't |
1426 // have the actual content. | 1426 // have the actual content. |
1427 SkColor body_background_color_; | 1427 SkColor body_background_color_; |
1428 | 1428 |
1429 // True if SendUpdateFrameInfo is pending. | |
1430 bool update_frame_info_scheduled_; | |
1431 | |
1432 // Expected id of the next content intent launched. Used to prevent scheduled | 1429 // Expected id of the next content intent launched. Used to prevent scheduled |
1433 // intents to be launched if aborted. | 1430 // intents to be launched if aborted. |
1434 size_t expected_content_intent_id_; | 1431 size_t expected_content_intent_id_; |
1435 | 1432 |
1436 // List of click-based content detectors. | 1433 // List of click-based content detectors. |
1437 typedef std::vector< linked_ptr<ContentDetector> > ContentDetectorList; | 1434 typedef std::vector< linked_ptr<ContentDetector> > ContentDetectorList; |
1438 ContentDetectorList content_detectors_; | 1435 ContentDetectorList content_detectors_; |
1439 | 1436 |
1440 // Proxy class for WebMediaPlayer to communicate with the real media player | 1437 // Proxy class for WebMediaPlayer to communicate with the real media player |
1441 // objects in browser process. | 1438 // objects in browser process. |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1573 // use the Observer interface to filter IPC messages and receive frame change | 1570 // use the Observer interface to filter IPC messages and receive frame change |
1574 // notifications. | 1571 // notifications. |
1575 // --------------------------------------------------------------------------- | 1572 // --------------------------------------------------------------------------- |
1576 | 1573 |
1577 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1574 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1578 }; | 1575 }; |
1579 | 1576 |
1580 } // namespace content | 1577 } // namespace content |
1581 | 1578 |
1582 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1579 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |