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

Side by Side Diff: webkit/browser/fileapi/file_system_task_runners.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "webkit/browser/fileapi/file_system_task_runners.h" 5 #include "webkit/browser/fileapi/file_system_task_runners.h"
6 6
7 #include "base/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 9
10 namespace fileapi { 10 namespace fileapi {
11 11
12 FileSystemTaskRunners::FileSystemTaskRunners( 12 FileSystemTaskRunners::FileSystemTaskRunners(
13 base::SingleThreadTaskRunner* io_task_runner, 13 base::SingleThreadTaskRunner* io_task_runner,
14 base::SingleThreadTaskRunner* file_task_runner) 14 base::SingleThreadTaskRunner* file_task_runner)
15 : io_task_runner_(io_task_runner), 15 : io_task_runner_(io_task_runner),
16 file_task_runner_(file_task_runner) { 16 file_task_runner_(file_task_runner) {
17 } 17 }
18 18
19 // static 19 // static
20 scoped_ptr<FileSystemTaskRunners> 20 scoped_ptr<FileSystemTaskRunners>
21 FileSystemTaskRunners::CreateMockTaskRunners() { 21 FileSystemTaskRunners::CreateMockTaskRunners() {
22 return make_scoped_ptr(new FileSystemTaskRunners( 22 return make_scoped_ptr(new FileSystemTaskRunners(
23 base::MessageLoopProxy::current(), 23 base::MessageLoopProxy::current(),
24 base::MessageLoopProxy::current())); 24 base::MessageLoopProxy::current()));
25 } 25 }
26 26
27 FileSystemTaskRunners::~FileSystemTaskRunners() { 27 FileSystemTaskRunners::~FileSystemTaskRunners() {
28 } 28 }
29 29
30 } // namespace fileapi 30 } // namespace fileapi
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/file_system_quota_client_unittest.cc ('k') | webkit/browser/fileapi/file_system_url_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698