OLD | NEW |
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/browser/web_contents/navigation_entry_impl.h" | 5 #include "content/browser/web_contents/navigation_entry_impl.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
9 #include "content/public/common/content_constants.h" | 9 #include "content/public/common/content_constants.h" |
10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 } | 205 } |
206 | 206 |
207 void NavigationEntryImpl::SetPostID(int64 post_id) { | 207 void NavigationEntryImpl::SetPostID(int64 post_id) { |
208 post_id_ = post_id; | 208 post_id_ = post_id; |
209 } | 209 } |
210 | 210 |
211 int64 NavigationEntryImpl::GetPostID() const { | 211 int64 NavigationEntryImpl::GetPostID() const { |
212 return post_id_; | 212 return post_id_; |
213 } | 213 } |
214 | 214 |
| 215 void NavigationEntryImpl::SetBrowserInitiatedPostData( |
| 216 scoped_refptr<base::RefCountedBytes> data) { |
| 217 browser_initiated_post_data_ = data; |
| 218 } |
| 219 |
| 220 const scoped_refptr<base::RefCountedBytes> |
| 221 NavigationEntryImpl::GetBrowserInitiatedPostData() const { |
| 222 return browser_initiated_post_data_; |
| 223 } |
| 224 |
| 225 |
215 const FaviconStatus& NavigationEntryImpl::GetFavicon() const { | 226 const FaviconStatus& NavigationEntryImpl::GetFavicon() const { |
216 return favicon_; | 227 return favicon_; |
217 } | 228 } |
218 | 229 |
219 FaviconStatus& NavigationEntryImpl::GetFavicon() { | 230 FaviconStatus& NavigationEntryImpl::GetFavicon() { |
220 return favicon_; | 231 return favicon_; |
221 } | 232 } |
222 | 233 |
223 const SSLStatus& NavigationEntryImpl::GetSSL() const { | 234 const SSLStatus& NavigationEntryImpl::GetSSL() const { |
224 return ssl_; | 235 return ssl_; |
(...skipping 13 matching lines...) Expand all Loading... |
238 | 249 |
239 void NavigationEntryImpl::SetIsOverridingUserAgent(bool override) { | 250 void NavigationEntryImpl::SetIsOverridingUserAgent(bool override) { |
240 is_overriding_user_agent_ = override; | 251 is_overriding_user_agent_ = override; |
241 } | 252 } |
242 | 253 |
243 bool NavigationEntryImpl::GetIsOverridingUserAgent() const { | 254 bool NavigationEntryImpl::GetIsOverridingUserAgent() const { |
244 return is_overriding_user_agent_; | 255 return is_overriding_user_agent_; |
245 } | 256 } |
246 | 257 |
247 } // namespace content | 258 } // namespace content |
OLD | NEW |