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

Side by Side Diff: content/common/frame_replication_state.h

Issue 692973005: Pass origin information for remote frame creation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test failures for content:// URLs on Android Created 6 years 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 unified diff | Download patch
« no previous file with comments | « content/common/frame_messages.h ('k') | content/common/frame_replication_state.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_FRAME_REPLICATION_STATE_H_
6 #define CONTENT_COMMON_FRAME_REPLICATION_STATE_H_
7
8 #include "content/common/content_export.h"
9 #include "url/origin.h"
10
11 namespace content {
12
13 // This structure holds information that needs to be replicated from a
14 // RenderFrame to any of its associated RenderFrameProxies.
15 struct CONTENT_EXPORT FrameReplicationState {
16 FrameReplicationState();
17 ~FrameReplicationState();
18
19 // Current serialized security origin of the frame. Unique origins are
20 // represented as the string "null" per RFC 6454.
21 url::Origin origin;
22
23 // TODO(alexmos): Eventually, this structure can also hold other state that
24 // needs to be replicated, such as frame sizing info.
25 };
26
27 } // namespace content
28
29 #endif // CONTENT_COMMON_FRAME_REPLICATION_STATE_H_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/common/frame_replication_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698