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

Side by Side Diff: content/browser/geolocation/fake_access_token_store.cc

Issue 16514006: Update includes of message_loop_proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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) 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
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
OLDNEW
« no previous file with comments | « content/browser/geolocation/fake_access_token_store.h ('k') | content/browser/geolocation/location_api_adapter_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698