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

Side by Side Diff: content/browser/web_contents/navigation_entry_impl.cc

Issue 10829044: Implement NavigationControllerWebView.PostURL (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixes according to comments. Improve render_view test. Created 8 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
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/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
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 const std::vector<char>& data) {
217 browser_initiated_post_data_ = data;
218 }
219
220 const std::vector<char>&
221 NavigationEntryImpl::GetBrowserInitiatedPostData() const {
222 return browser_initiated_post_data_;
223 }
224
215 const FaviconStatus& NavigationEntryImpl::GetFavicon() const { 225 const FaviconStatus& NavigationEntryImpl::GetFavicon() const {
216 return favicon_; 226 return favicon_;
217 } 227 }
218 228
219 FaviconStatus& NavigationEntryImpl::GetFavicon() { 229 FaviconStatus& NavigationEntryImpl::GetFavicon() {
220 return favicon_; 230 return favicon_;
221 } 231 }
222 232
223 const SSLStatus& NavigationEntryImpl::GetSSL() const { 233 const SSLStatus& NavigationEntryImpl::GetSSL() const {
224 return ssl_; 234 return ssl_;
(...skipping 13 matching lines...) Expand all
238 248
239 void NavigationEntryImpl::SetIsOverridingUserAgent(bool override) { 249 void NavigationEntryImpl::SetIsOverridingUserAgent(bool override) {
240 is_overriding_user_agent_ = override; 250 is_overriding_user_agent_ = override;
241 } 251 }
242 252
243 bool NavigationEntryImpl::GetIsOverridingUserAgent() const { 253 bool NavigationEntryImpl::GetIsOverridingUserAgent() const {
244 return is_overriding_user_agent_; 254 return is_overriding_user_agent_;
245 } 255 }
246 256
247 } // namespace content 257 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698