| OLD | NEW |
| 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/browser/geolocation/fake_access_token_store.h" | 5 #include "content/browser/geolocation/fake_access_token_store.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/message_loop_proxy.h" | 10 #include "base/message_loop/message_loop_proxy.h" |
| 11 | 11 |
| 12 using base::MessageLoopProxy; | 12 using base::MessageLoopProxy; |
| 13 using testing::_; | 13 using testing::_; |
| 14 using testing::Invoke; | 14 using testing::Invoke; |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 FakeAccessTokenStore::FakeAccessTokenStore() | 18 FakeAccessTokenStore::FakeAccessTokenStore() |
| 19 : originating_message_loop_(NULL) { | 19 : originating_message_loop_(NULL) { |
| 20 ON_CALL(*this, LoadAccessTokens(_)) | 20 ON_CALL(*this, LoadAccessTokens(_)) |
| (...skipping 25 matching lines...) Expand all Loading... |
| 46 | 46 |
| 47 void FakeAccessTokenStore::DefaultSaveAccessToken( | 47 void FakeAccessTokenStore::DefaultSaveAccessToken( |
| 48 const GURL& server_url, const string16& access_token) { | 48 const GURL& server_url, const string16& access_token) { |
| 49 DCHECK(server_url.is_valid()); | 49 DCHECK(server_url.is_valid()); |
| 50 access_token_set_[server_url] = access_token; | 50 access_token_set_[server_url] = access_token; |
| 51 } | 51 } |
| 52 | 52 |
| 53 FakeAccessTokenStore::~FakeAccessTokenStore() {} | 53 FakeAccessTokenStore::~FakeAccessTokenStore() {} |
| 54 | 54 |
| 55 } // namespace content | 55 } // namespace content |
| OLD | NEW |