Skip to content

Commit

Permalink
Fix SetOmniboxSpeculation in TcpClientSocket*
Browse files Browse the repository at this point in the history
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3292011

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58821 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
cbentzel@chromium.org committed Sep 8, 2010
1 parent 8997736 commit 62955b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/socket/tcp_client_socket_libevent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ void TCPClientSocketLibevent::SetSubresourceSpeculation() {
}

void TCPClientSocketLibevent::SetOmniboxSpeculation() {
use_history_.set_subresource_speculation();
use_history_.set_omnibox_speculation();
}

bool TCPClientSocketLibevent::WasEverUsed() const {
Expand Down
2 changes: 1 addition & 1 deletion net/socket/tcp_client_socket_win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ void TCPClientSocketWin::SetSubresourceSpeculation() {
}

void TCPClientSocketWin::SetOmniboxSpeculation() {
use_history_.set_subresource_speculation();
use_history_.set_omnibox_speculation();
}

bool TCPClientSocketWin::WasEverUsed() const {
Expand Down

0 comments on commit 62955b7

Please sign in to comment.