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

Unified Diff: content/renderer/frame_owner_properties.h

Issue 2688803004: Move usage of WebString methods into renderer for FrameOwnerProperties (Closed)
Patch Set: fix rebase Created 3 years, 10 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/renderer/BUILD.gn ('k') | content/renderer/frame_owner_properties.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/frame_owner_properties.h
diff --git a/content/renderer/frame_owner_properties.h b/content/renderer/frame_owner_properties.h
new file mode 100644
index 0000000000000000000000000000000000000000..05205c2c753077bed962ae96cbbd93107ad0e6d6
--- /dev/null
+++ b/content/renderer/frame_owner_properties.h
@@ -0,0 +1,22 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_H_
+#define CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_H_
+
+#include "content/common/frame_owner_properties.h"
+#include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
+
+namespace content {
+
+FrameOwnerProperties ConvertWebFrameOwnerPropertiesToFrameOwnerProperties(
+ const blink::WebFrameOwnerProperties& web_frame_owner_properties);
+
+blink::WebFrameOwnerProperties
+ConvertFrameOwnerPropertiesToWebFrameOwnerProperties(
+ const FrameOwnerProperties& frame_owner_properties);
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_FRAME_OWNER_PROPERTIES_H_
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/frame_owner_properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698