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

Side by Side Diff: content/public/renderer/document_state.cc

Issue 19705013: [password autofill] Remove references to PasswordForm from RenderViewImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/renderer/document_state.h" 5 #include "content/public/renderer/document_state.h"
6 6
7 #include "content/public/common/password_form.h"
8 #include "content/public/renderer/navigation_state.h" 7 #include "content/public/renderer/navigation_state.h"
9 8
10 namespace content { 9 namespace content {
11 10
12 DocumentState::DocumentState() 11 DocumentState::DocumentState()
13 : load_histograms_recorded_(false), 12 : load_histograms_recorded_(false),
14 web_timing_histograms_recorded_(false), 13 web_timing_histograms_recorded_(false),
15 was_fetched_via_spdy_(false), 14 was_fetched_via_spdy_(false),
16 was_npn_negotiated_(false), 15 was_npn_negotiated_(false),
17 was_alternate_protocol_available_(false), 16 was_alternate_protocol_available_(false),
18 connection_info_(net::HttpResponseInfo::CONNECTION_INFO_UNKNOWN), 17 connection_info_(net::HttpResponseInfo::CONNECTION_INFO_UNKNOWN),
19 was_fetched_via_proxy_(false), 18 was_fetched_via_proxy_(false),
20 was_prefetcher_(false), 19 was_prefetcher_(false),
21 was_referred_by_prefetcher_(false), 20 was_referred_by_prefetcher_(false),
22 was_after_preconnect_request_(false), 21 was_after_preconnect_request_(false),
23 load_type_(UNDEFINED_LOAD), 22 load_type_(UNDEFINED_LOAD),
24 can_load_local_resources_(false) { 23 can_load_local_resources_(false) {
25 } 24 }
26 25
27 DocumentState::~DocumentState() {} 26 DocumentState::~DocumentState() {}
28 27
29 void DocumentState::set_password_form_data(
30 scoped_ptr<PasswordForm> data) {
31 password_form_data_.reset(data.release());
32 }
33
34 void DocumentState::set_navigation_state(NavigationState* navigation_state) { 28 void DocumentState::set_navigation_state(NavigationState* navigation_state) {
35 navigation_state_.reset(navigation_state); 29 navigation_state_.reset(navigation_state);
36 } 30 }
37 31
38 } // namespace content 32 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/document_state.h ('k') | content/public/renderer/render_view_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698