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 #include "content/renderer/render_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <cmath> | 8 #include <cmath> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 media_stream_dispatcher_(NULL), | 656 media_stream_dispatcher_(NULL), |
657 browser_plugin_manager_(NULL), | 657 browser_plugin_manager_(NULL), |
658 media_stream_impl_(NULL), | 658 media_stream_impl_(NULL), |
659 devtools_agent_(NULL), | 659 devtools_agent_(NULL), |
660 accessibility_mode_(AccessibilityModeOff), | 660 accessibility_mode_(AccessibilityModeOff), |
661 renderer_accessibility_(NULL), | 661 renderer_accessibility_(NULL), |
662 java_bridge_dispatcher_(NULL), | 662 java_bridge_dispatcher_(NULL), |
663 mouse_lock_dispatcher_(NULL), | 663 mouse_lock_dispatcher_(NULL), |
664 #if defined(OS_ANDROID) | 664 #if defined(OS_ANDROID) |
665 body_background_color_(SK_ColorWHITE), | 665 body_background_color_(SK_ColorWHITE), |
666 update_frame_info_scheduled_(false), | |
667 expected_content_intent_id_(0), | 666 expected_content_intent_id_(0), |
668 media_player_proxy_(NULL), | 667 media_player_proxy_(NULL), |
669 enumeration_completion_id_(0), | 668 enumeration_completion_id_(0), |
670 ALLOW_THIS_IN_INITIALIZER_LIST( | 669 ALLOW_THIS_IN_INITIALIZER_LIST( |
671 load_progress_tracker_(new LoadProgressTracker(this))), | 670 load_progress_tracker_(new LoadProgressTracker(this))), |
672 #endif | 671 #endif |
673 session_storage_namespace_id_(params->session_storage_namespace_id), | 672 session_storage_namespace_id_(params->session_storage_namespace_id), |
674 decrement_shared_popup_at_destruction_(false), | 673 decrement_shared_popup_at_destruction_(false), |
675 handling_select_range_(false), | 674 handling_select_range_(false), |
676 next_snapshot_id_(0), | 675 next_snapshot_id_(0), |
(...skipping 5940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6617 WebURL url = icon_urls[i].iconURL(); | 6616 WebURL url = icon_urls[i].iconURL(); |
6618 if (!url.isEmpty()) | 6617 if (!url.isEmpty()) |
6619 urls.push_back(FaviconURL(url, | 6618 urls.push_back(FaviconURL(url, |
6620 ToFaviconType(icon_urls[i].iconType()))); | 6619 ToFaviconType(icon_urls[i].iconType()))); |
6621 } | 6620 } |
6622 SendUpdateFaviconURL(urls); | 6621 SendUpdateFaviconURL(urls); |
6623 } | 6622 } |
6624 | 6623 |
6625 | 6624 |
6626 } // namespace content | 6625 } // namespace content |
OLD | NEW |