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

Side by Side Diff: android_webview/common/render_view_messages.h

Issue 135443002: Fix race condition introduced in r242200 where AwContentsIoThreadClient is queried before a subfram… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 11 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include "android_webview/common/aw_hit_test_data.h" 6 #include "android_webview/common/aw_hit_test_data.h"
7 #include "content/public/common/common_param_traits.h" 7 #include "content/public/common/common_param_traits.h"
8 #include "ipc/ipc_channel_handle.h" 8 #include "ipc/ipc_channel_handle.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 #include "ipc/ipc_platform_file.h" 10 #include "ipc/ipc_platform_file.h"
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // Sent immediately before a top level navigation is initiated within Blink. 103 // Sent immediately before a top level navigation is initiated within Blink.
104 // There are some exlusions, the most important ones are it is not sent 104 // There are some exlusions, the most important ones are it is not sent
105 // when creating a popup window, and not sent for application initiated 105 // when creating a popup window, and not sent for application initiated
106 // navigations. See AwContentRendererClient::HandleNavigation for all 106 // navigations. See AwContentRendererClient::HandleNavigation for all
107 // cornercases. This is sent before updating the NavigationController state 107 // cornercases. This is sent before updating the NavigationController state
108 // or creating a URLRequest for the main frame resource. 108 // or creating a URLRequest for the main frame resource.
109 IPC_SYNC_MESSAGE_CONTROL2_1(AwViewHostMsg_ShouldOverrideUrlLoading, 109 IPC_SYNC_MESSAGE_CONTROL2_1(AwViewHostMsg_ShouldOverrideUrlLoading,
110 int /* render_frame_id id */, 110 int /* render_frame_id id */,
111 base::string16 /* in - url */, 111 base::string16 /* in - url */,
112 bool /* out - result */) 112 bool /* out - result */)
113
114 // Sent when a subframe is created.
115 IPC_MESSAGE_CONTROL2(AwViewHostMsg_SubFrameCreated,
116 int /* parent_render_frame_id */,
117 int /* child_render_frame_id */)
OLDNEW
« no previous file with comments | « android_webview/browser/aw_contents_io_thread_client.h ('k') | android_webview/native/aw_contents_io_thread_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698