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

Unified Diff: content/renderer/render_view_impl.cc

Issue 8804006: Reland 8688002: PPB_TCPSocket_Private/PPB_UDPSocket_Private are exposed to Browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reorder memebers Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index a89b4731b834c0a54168d5272006a0a680335c7a..5c94de9c234ee546e749150015050a764c4b69c8 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -354,10 +354,6 @@ RenderViewImpl::RenderViewImpl(
cached_is_main_frame_pinned_to_right_(false),
cached_has_main_frame_horizontal_scrollbar_(false),
cached_has_main_frame_vertical_scrollbar_(false),
- ALLOW_THIS_IN_INITIALIZER_LIST(pepper_delegate_(this)),
-#if defined(OS_WIN)
- focused_plugin_id_(-1),
-#endif
ALLOW_THIS_IN_INITIALIZER_LIST(cookie_jar_(this)),
geolocation_dispatcher_(NULL),
speech_input_dispatcher_(NULL),
@@ -366,7 +362,11 @@ RenderViewImpl::RenderViewImpl(
devtools_agent_(NULL),
renderer_accessibility_(NULL),
session_storage_namespace_id_(session_storage_namespace_id),
- handling_select_range_(false) {
+ handling_select_range_(false),
+#if defined(OS_WIN)
+ focused_plugin_id_(-1),
+#endif
+ ALLOW_THIS_IN_INITIALIZER_LIST(pepper_delegate_(this)) {
routing_id_ = routing_id;
if (opener_id != MSG_ROUTING_NONE)
opener_id_ = opener_id;

Powered by Google App Engine
This is Rietveld 408576698