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

Unified Diff: content/browser/frame_host/frame_tree_node_blame_context_unittest.cc

Issue 2156883002: Use content::FrameOwnerProperties instead of blink::WebFrameOwnerProperties in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@permission-delegation-frame-owner-properties
Patch Set: Use this everywhere Created 4 years, 5 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/browser/frame_host/frame_tree_node_blame_context_unittest.cc
diff --git a/content/browser/frame_host/frame_tree_node_blame_context_unittest.cc b/content/browser/frame_host/frame_tree_node_blame_context_unittest.cc
index 6f76b92ebe248629c9ba851caa3615622d3cb58c..f6d68a471d9f619f868865edbc4448bc64780963 100644
--- a/content/browser/frame_host/frame_tree_node_blame_context_unittest.cc
+++ b/content/browser/frame_host/frame_tree_node_blame_context_unittest.cc
@@ -11,6 +11,7 @@
#include "base/trace_event/trace_event_argument.h"
#include "content/browser/frame_host/frame_tree.h"
#include "content/browser/frame_host/frame_tree_node.h"
+#include "content/common/frame_owner_properties.h"
#include "content/test/test_render_view_host.h"
#include "content/test/test_web_contents.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -130,10 +131,10 @@ class FrameTreeNodeBlameContextTest : public RenderViewHostImplTestHarness {
int consumption = 0;
for (int child_num = 1; shape[consumption++] == '('; ++child_num) {
int child_id = self_id * 10 + child_num;
- tree()->AddFrame(
- node, process_id(), child_id, blink::WebTreeScopeType::Document,
- std::string(), base::StringPrintf("uniqueName%d", child_id),
- blink::WebSandboxFlags::None, blink::WebFrameOwnerProperties());
+ tree()->AddFrame(node, process_id(), child_id,
+ blink::WebTreeScopeType::Document, std::string(),
+ base::StringPrintf("uniqueName%d", child_id),
+ blink::WebSandboxFlags::None, FrameOwnerProperties());
FrameTreeNode* child = node->child_at(child_num - 1);
consumption += CreateSubframes(child, child_id, shape + consumption);
}

Powered by Google App Engine
This is Rietveld 408576698