Check the response URL origin in BufferedDataSource to avoid mixing cross-origin...
[chromium-blink-merge.git] / base / test / null_task_runner.h
blob0f447513c58d569628fe69586e739acae9db1154
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
3 // found in the LICENSE file.
5 #ifndef BASE_TEST_NULL_TASK_RUNNER_H_
6 #define BASE_TEST_NULL_TASK_RUNNER_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/single_thread_task_runner.h"
12 namespace base {
14 // Helper class for tests that need to provide an implementation of a
15 // *TaskRunner class but don't actually care about tasks being run.
17 class NullTaskRunner : public base::SingleThreadTaskRunner {
18 public:
19 NullTaskRunner();
21 bool PostDelayedTask(const tracked_objects::Location& from_here,
22 const base::Closure& task,
23 base::TimeDelta delay) override;
24 bool PostNonNestableDelayedTask(const tracked_objects::Location& from_here,
25 const base::Closure& task,
26 base::TimeDelta delay) override;
27 // Always returns true to avoid triggering DCHECKs.
28 bool RunsTasksOnCurrentThread() const override;
30 protected:
31 ~NullTaskRunner() override;
33 DISALLOW_COPY_AND_ASSIGN(NullTaskRunner);
36 } // namespace base
38 #endif // BASE_TEST_NULL_TASK_RUNNER_H_