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

Unified Diff: third_party/WebKit/public/web/WebFrameOwnerProperties.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/test/test_render_frame_host.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebFrameOwnerProperties.h
diff --git a/third_party/WebKit/public/web/WebFrameOwnerProperties.h b/third_party/WebKit/public/web/WebFrameOwnerProperties.h
index ba6ccef5480d638629a8f79dcf65d361f46d6316..f7f6e65147bec6d4744f124d5b64bbfe8bb7c1a6 100644
--- a/third_party/WebKit/public/web/WebFrameOwnerProperties.h
+++ b/third_party/WebKit/public/web/WebFrameOwnerProperties.h
@@ -43,22 +43,6 @@ struct WebFrameOwnerProperties {
{
}
#endif
-
- bool operator==(const WebFrameOwnerProperties& other) const
- {
- return scrollingMode == other.scrollingMode
- && marginWidth == other.marginWidth
- && marginHeight == other.marginHeight
- && allowFullscreen == other.allowFullscreen
- && std::equal(delegatedPermissions.begin(),
- delegatedPermissions.end(),
- other.delegatedPermissions.begin());
- }
-
- bool operator!=(const WebFrameOwnerProperties& other) const
- {
- return !(*this == other);
- }
};
} // namespace blink
« no previous file with comments | « content/test/test_render_frame_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698