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

Unified Diff: webkit/browser/fileapi/timed_task_helper_unittest.cc

Issue 17948002: Update Linux to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/browser/fileapi/sandbox_quota_observer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/timed_task_helper_unittest.cc
diff --git a/webkit/browser/fileapi/timed_task_helper_unittest.cc b/webkit/browser/fileapi/timed_task_helper_unittest.cc
index 5f11c7e0efbf2d142f83c29c9e8998d3339937b2..5621135253d7e08d172d7443feb11d33ce536db4 100644
--- a/webkit/browser/fileapi/timed_task_helper_unittest.cc
+++ b/webkit/browser/fileapi/timed_task_helper_unittest.cc
@@ -19,8 +19,7 @@ namespace {
class Embedder {
public:
Embedder()
- : timer_(base::MessageLoopProxy::current()),
- timer_fired_(false) {}
+ : timer_(base::MessageLoopProxy::current().get()), timer_fired_(false) {}
void OnTimerFired() {
timer_fired_ = true;
« no previous file with comments | « webkit/browser/fileapi/sandbox_quota_observer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698