summaryrefslogtreecommitdiff
path: root/chromium/net/disk_cache/blockfile/backend_worker_v3.cc
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@theqtcompany.com>2014-12-05 15:04:29 +0100
committerAndras Becsi <andras.becsi@theqtcompany.com>2014-12-09 10:49:28 +0100
commitaf6588f8d723931a298c995fa97259bb7f7deb55 (patch)
tree060ca707847ba1735f01af2372e0d5e494dc0366 /chromium/net/disk_cache/blockfile/backend_worker_v3.cc
parent2fff84d821cc7b1c785f6404e0f8091333283e74 (diff)
downloadqtwebengine-chromium-af6588f8d723931a298c995fa97259bb7f7deb55.tar.gz
BASELINE: Update chromium to 40.0.2214.28 and ninja to 1.5.3.
Change-Id: I759465284fd64d59ad120219cbe257f7402c4181 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'chromium/net/disk_cache/blockfile/backend_worker_v3.cc')
-rw-r--r--chromium/net/disk_cache/blockfile/backend_worker_v3.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/chromium/net/disk_cache/blockfile/backend_worker_v3.cc b/chromium/net/disk_cache/blockfile/backend_worker_v3.cc
index ab432c4a397..1d89de6244a 100644
--- a/chromium/net/disk_cache/blockfile/backend_worker_v3.cc
+++ b/chromium/net/disk_cache/blockfile/backend_worker_v3.cc
@@ -6,8 +6,8 @@
#include "base/bind.h"
#include "base/bind_helpers.h"
-#include "base/file_util.h"
#include "base/files/file_path.h"
+#include "base/files/file_util.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
@@ -93,11 +93,10 @@ bool InitExperiment(disk_cache::IndexHeader* header, bool cache_created) {
namespace disk_cache {
-BackendImplV3::Worker::Worker(const base::FilePath& path,
- base::MessageLoopProxy* main_thread)
- : path_(path),
- block_files_(path),
- init_(false) {
+BackendImplV3::Worker::Worker(
+ const base::FilePath& path,
+ const scoped_refptr<base::SingleThreadTaskRunner>& main_thread)
+ : path_(path), block_files_(path), init_(false) {
}
#if defined(V3_NOT_JUST_YET_READY)