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

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

Issue 1825273002: Add more out of line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « content/common/frame_replication_state.h ('k') | content/public/common/frame_navigate_params.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/frame_replication_state.h" 5 #include "content/common/frame_replication_state.h"
6 #include "third_party/WebKit/public/web/WebSandboxFlags.h" 6 #include "third_party/WebKit/public/web/WebSandboxFlags.h"
7 #include "third_party/WebKit/public/web/WebTreeScopeType.h" 7 #include "third_party/WebKit/public/web/WebTreeScopeType.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 13 matching lines...) Expand all
24 : origin(), 24 : origin(),
25 sandbox_flags(sandbox_flags), 25 sandbox_flags(sandbox_flags),
26 name(name), 26 name(name),
27 unique_name(unique_name), 27 unique_name(unique_name),
28 scope(scope), 28 scope(scope),
29 should_enforce_strict_mixed_content_checking( 29 should_enforce_strict_mixed_content_checking(
30 should_enforce_strict_mixed_content_checking), 30 should_enforce_strict_mixed_content_checking),
31 has_potentially_trustworthy_unique_origin( 31 has_potentially_trustworthy_unique_origin(
32 has_potentially_trustworthy_unique_origin) {} 32 has_potentially_trustworthy_unique_origin) {}
33 33
34 FrameReplicationState::FrameReplicationState(
35 const FrameReplicationState& other) = default;
36
34 FrameReplicationState::~FrameReplicationState() { 37 FrameReplicationState::~FrameReplicationState() {
35 } 38 }
36 39
37 } // namespace content 40 } // namespace content
OLDNEW
« no previous file with comments | « content/common/frame_replication_state.h ('k') | content/public/common/frame_navigate_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698