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

Unified Diff: content/public/test/mock_render_thread.h

Issue 1307013004: Propagate scrolling/marginwidth/marginheight property values to child frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: consolidate render->browser ipcs into one Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: content/public/test/mock_render_thread.h
diff --git a/content/public/test/mock_render_thread.h b/content/public/test/mock_render_thread.h
index efcbf759a176fb6ed1afdec1dd0dab7246e86e8c..790b2d55d0a82ffddcdf1c7b95eaaf920621fd58 100644
--- a/content/public/test/mock_render_thread.h
+++ b/content/public/test/mock_render_thread.h
@@ -24,6 +24,7 @@ class MessageReplyDeserializer;
namespace blink {
enum class WebSandboxFlags;
enum class WebTreeScopeType;
+struct WebFrameOwnerProperties;
}
namespace content {
@@ -133,11 +134,13 @@ class MockRenderThread : public RenderThread {
int64* cloned_session_storage_namespace_id);
// The Frame expects to be returned a valid route_id different from its own.
- void OnCreateChildFrame(int new_frame_routing_id,
- blink::WebTreeScopeType scope,
- const std::string& frame_name,
- blink::WebSandboxFlags sandbox_flags,
- int* new_render_frame_id);
+ void OnCreateChildFrame(
+ int new_frame_routing_id,
+ blink::WebTreeScopeType scope,
+ const std::string& frame_name,
+ blink::WebSandboxFlags sandbox_flags,
+ const blink::WebFrameOwnerProperties& frame_owner_properties,
+ int* new_render_frame_id);
#if defined(OS_WIN)
void OnDuplicateSection(base::SharedMemoryHandle renderer_handle,

Powered by Google App Engine
This is Rietveld 408576698