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

Side by Side Diff: chrome/browser/geolocation/access_token_store_browsertest.cc

Issue 1395103003: Don't use base::MessageLoop::{Quit,QuitClosure} in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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) 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/bind_helpers.h" 6 #include "base/bind_helpers.h"
7 #include "base/strings/string_util.h" 7 #include "base/strings/string_util.h"
8 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "chrome/browser/geolocation/chrome_access_token_store.h" 9 #include "chrome/browser/geolocation/chrome_access_token_store.h"
10 #include "chrome/test/base/in_process_browser_test.h" 10 #include "chrome/test/base/in_process_browser_test.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 EXPECT_TRUE(item == access_token_set.end()); 92 EXPECT_TRUE(item == access_token_set.end());
93 } else { 93 } else {
94 EXPECT_FALSE(item == access_token_set.end()); 94 EXPECT_FALSE(item == access_token_set.end());
95 EXPECT_EQ(*token_to_expect_, item->second); 95 EXPECT_EQ(*token_to_expect_, item->second);
96 } 96 }
97 97
98 if (token_to_set_) { 98 if (token_to_set_) {
99 scoped_refptr<AccessTokenStore> store(new ChromeAccessTokenStore()); 99 scoped_refptr<AccessTokenStore> store(new ChromeAccessTokenStore());
100 store->SaveAccessToken(ref_url_, *token_to_set_); 100 store->SaveAccessToken(ref_url_, *token_to_set_);
101 } 101 }
102 BrowserThread::PostTask( 102 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
103 BrowserThread::UI, FROM_HERE, base::MessageLoop::QuitClosure()); 103 base::MessageLoop::QuitWhenIdleClosure());
104 } 104 }
105 105
106 IN_PROC_BROWSER_TEST_F(GeolocationAccessTokenStoreTest, SetAcrossInstances) { 106 IN_PROC_BROWSER_TEST_F(GeolocationAccessTokenStoreTest, SetAcrossInstances) {
107 const base::string16 ref_token1 = base::ASCIIToUTF16("jksdfo90,'s#\"#1*("); 107 const base::string16 ref_token1 = base::ASCIIToUTF16("jksdfo90,'s#\"#1*(");
108 const base::string16 ref_token2 = 108 const base::string16 ref_token2 =
109 base::ASCIIToUTF16("\1\2\3\4\5\6\7\10\11\12=023"); 109 base::ASCIIToUTF16("\1\2\3\4\5\6\7\10\11\12=023");
110 ASSERT_TRUE(BrowserThread::CurrentlyOn(BrowserThread::UI)); 110 ASSERT_TRUE(BrowserThread::CurrentlyOn(BrowserThread::UI));
111 111
112 DoTestStepAndWaitForResults(kRefServerUrl1, NULL, &ref_token1); 112 DoTestStepAndWaitForResults(kRefServerUrl1, NULL, &ref_token1);
113 // Check it was set, and change to new value. 113 // Check it was set, and change to new value.
(...skipping 15 matching lines...) Expand all
129 // Set a token for the old default network provider url. 129 // Set a token for the old default network provider url.
130 DoTestStepAndWaitForResults(kOldDefaultNetworkProviderUrl, 130 DoTestStepAndWaitForResults(kOldDefaultNetworkProviderUrl,
131 NULL, &ref_token1); 131 NULL, &ref_token1);
132 // Check that the token related to the old default network provider url 132 // Check that the token related to the old default network provider url
133 // was deleted. 133 // was deleted.
134 DoTestStepAndWaitForResults(kOldDefaultNetworkProviderUrl, 134 DoTestStepAndWaitForResults(kOldDefaultNetworkProviderUrl,
135 NULL, NULL); 135 NULL, NULL);
136 } 136 }
137 137
138 } // namespace 138 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/first_run/try_chrome_dialog_view.cc ('k') | chrome/browser/geolocation/geolocation_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698