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

Side by Side Diff: chrome/browser/notifications/desktop_notification_service_unittest.cc

Issue 3654001: Revert 61899 for breaking cookes on file:// URLs.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/browser/notifications/desktop_notification_service.h" 5 #include "chrome/browser/notifications/desktop_notification_service.h"
6 6
7 #include "base/ref_counted.h" 7 #include "base/ref_counted.h"
8 #include "base/waitable_event.h" 8 #include "base/waitable_event.h"
9 #include "chrome/browser/notifications/notifications_prefs_cache.h" 9 #include "chrome/browser/notifications/notifications_prefs_cache.h"
10 #include "chrome/browser/prefs/pref_service.h" 10 #include "chrome/browser/prefs/pref_service.h"
(...skipping 23 matching lines...) Expand all
34 io_thread_.reset(new ChromeThread(ChromeThread::IO)); 34 io_thread_.reset(new ChromeThread(ChromeThread::IO));
35 io_thread_->Start(); 35 io_thread_->Start();
36 36
37 // Calling PauseIOThread() here isn't safe, because the runnable method 37 // Calling PauseIOThread() here isn't safe, because the runnable method
38 // could complete before the constructor is done, deleting |this|. 38 // could complete before the constructor is done, deleting |this|.
39 } 39 }
40 40
41 int CacheHasPermission(NotificationsPrefsCache* cache, const GURL& url) { 41 int CacheHasPermission(NotificationsPrefsCache* cache, const GURL& url) {
42 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)); 42 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
43 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, 43 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE,
44 NewRunnableMethod(this, 44 NewRunnableMethod(this, &ThreadProxy::CacheHasPermissionIO,
45 &ThreadProxy::CacheHasPermissionIO, 45 cache, url));
46 make_scoped_refptr(cache),
47 url));
48 io_event_.Signal(); 46 io_event_.Signal();
49 ui_event_.Wait(); // Wait for IO thread to be done. 47 ui_event_.Wait(); // Wait for IO thread to be done.
50 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, 48 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE,
51 NewRunnableMethod(this, &ThreadProxy::PauseIOThreadIO)); 49 NewRunnableMethod(this, &ThreadProxy::PauseIOThreadIO));
52 50
53 return permission_; 51 return permission_;
54 } 52 }
55 53
56 void PauseIOThread() { 54 void PauseIOThread() {
57 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE, 55 ChromeThread::PostTask(ChromeThread::IO, FROM_HERE,
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 EXPECT_EQ(WebKit::WebNotificationPresenter::PermissionDenied, 238 EXPECT_EQ(WebKit::WebNotificationPresenter::PermissionDenied,
241 proxy_->CacheHasPermission(cache_, denied_url)); 239 proxy_->CacheHasPermission(cache_, denied_url));
242 240
243 service_->ResetBlockedOrigin(denied_url); 241 service_->ResetBlockedOrigin(denied_url);
244 242
245 EXPECT_EQ(WebKit::WebNotificationPresenter::PermissionNotAllowed, 243 EXPECT_EQ(WebKit::WebNotificationPresenter::PermissionNotAllowed,
246 proxy_->CacheHasPermission(cache_, denied_url)); 244 proxy_->CacheHasPermission(cache_, denied_url));
247 } 245 }
248 246
249 } // namespace 247 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/in_process_webkit/dom_storage_dispatcher_host.cc ('k') | chrome/browser/renderer_host/audio_renderer_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698