Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 14210004: Consolidate UpdateFrameInfo and SwapCompositorFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 5926 matching lines...) Expand 10 before | Expand all | Expand 10 after
6603 WebURL url = icon_urls[i].iconURL(); 6602 WebURL url = icon_urls[i].iconURL();
6604 if (!url.isEmpty()) 6603 if (!url.isEmpty())
6605 urls.push_back(FaviconURL(url, 6604 urls.push_back(FaviconURL(url,
6606 ToFaviconType(icon_urls[i].iconType()))); 6605 ToFaviconType(icon_urls[i].iconType())));
6607 } 6606 }
6608 SendUpdateFaviconURL(urls); 6607 SendUpdateFaviconURL(urls);
6609 } 6608 }
6610 6609
6611 6610
6612 } // namespace content 6611 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698