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

Side by Side Diff: content/public/browser/navigation_details.cc

Issue 2841833002: Renamed LoadCommittedDetails.is_in_page to is_same_document. (Closed)
Patch Set: I said "once and for all" Created 3 years, 8 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/public/browser/navigation_details.h ('k') | services/navigation/view_impl.cc » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/public/browser/navigation_details.h" 5 #include "content/public/browser/navigation_details.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 LoadCommittedDetails::LoadCommittedDetails() 9 LoadCommittedDetails::LoadCommittedDetails()
10 : entry(nullptr), 10 : entry(nullptr),
11 type(content::NAVIGATION_TYPE_UNKNOWN), 11 type(content::NAVIGATION_TYPE_UNKNOWN),
12 previous_entry_index(-1), 12 previous_entry_index(-1),
13 did_replace_entry(false), 13 did_replace_entry(false),
14 is_in_page(false), 14 is_same_document(false),
15 is_main_frame(true), 15 is_main_frame(true),
16 http_status_code(0) { 16 http_status_code(0) {}
17 }
18 17
19 LoadCommittedDetails::LoadCommittedDetails(const LoadCommittedDetails& other) = 18 LoadCommittedDetails::LoadCommittedDetails(const LoadCommittedDetails& other) =
20 default; 19 default;
21 20
22 } // namespace content 21 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/navigation_details.h ('k') | services/navigation/view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698