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

Unified Diff: content/browser/frame_host/frame_tree_node.h

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
« no previous file with comments | « content/browser/frame_host/frame_tree.cc ('k') | content/browser/frame_host/frame_tree_node.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/frame_tree_node.h
diff --git a/content/browser/frame_host/frame_tree_node.h b/content/browser/frame_host/frame_tree_node.h
index 35da0f83de68265e3f36eadbfb5f31e05ca00b5f..bf15e2f4c32ba34482d54a0191e36e61b8bfe3f1 100644
--- a/content/browser/frame_host/frame_tree_node.h
+++ b/content/browser/frame_host/frame_tree_node.h
@@ -17,9 +17,9 @@
#include "content/browser/frame_host/render_frame_host_impl.h"
#include "content/browser/frame_host/render_frame_host_manager.h"
#include "content/common/content_export.h"
+#include "content/common/frame_owner_properties.h"
#include "content/common/frame_replication_state.h"
#include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h"
-#include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
#include "url/gurl.h"
#include "url/origin.h"
@@ -65,7 +65,7 @@ class CONTENT_EXPORT FrameTreeNode {
blink::WebTreeScopeType scope,
const std::string& name,
const std::string& unique_name,
- const blink::WebFrameOwnerProperties& frame_owner_properties);
+ const FrameOwnerProperties& frame_owner_properties);
~FrameTreeNode();
@@ -190,12 +190,12 @@ class CONTENT_EXPORT FrameTreeNode {
// flags were changed.
bool CommitPendingSandboxFlags();
- const blink::WebFrameOwnerProperties& frame_owner_properties() {
+ const FrameOwnerProperties& frame_owner_properties() {
return frame_owner_properties_;
}
void set_frame_owner_properties(
- const blink::WebFrameOwnerProperties& frame_owner_properties) {
+ const FrameOwnerProperties& frame_owner_properties) {
frame_owner_properties_ = frame_owner_properties;
}
@@ -352,7 +352,7 @@ class CONTENT_EXPORT FrameTreeNode {
// properties, we update them here too.
//
// Note that dynamic updates only take effect on the next frame navigation.
- blink::WebFrameOwnerProperties frame_owner_properties_;
+ FrameOwnerProperties frame_owner_properties_;
// Used to track this node's loading progress (from 0 to 1).
double loading_progress_;
« no previous file with comments | « content/browser/frame_host/frame_tree.cc ('k') | content/browser/frame_host/frame_tree_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698