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