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

Side by Side Diff: chromeos/tpm/tpm_token_info_getter_unittest.cc

Issue 2726523002: Pass Callback to TaskRunner by value and consume it on invocation (1) (Closed)
Patch Set: erase Closure* Created 3 years, 8 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <stdint.h> 5 #include <stdint.h>
6 6
7 #include <string> 7 #include <string>
8 #include <utility>
8 #include <vector> 9 #include <vector>
9 10
10 #include "base/bind.h" 11 #include "base/bind.h"
11 #include "base/location.h" 12 #include "base/location.h"
12 #include "base/macros.h" 13 #include "base/macros.h"
13 #include "base/message_loop/message_loop.h" 14 #include "base/message_loop/message_loop.h"
14 #include "base/run_loop.h" 15 #include "base/run_loop.h"
15 #include "base/single_thread_task_runner.h" 16 #include "base/single_thread_task_runner.h"
16 #include "base/task_runner.h" 17 #include "base/task_runner.h"
17 #include "base/threading/thread_task_runner_handle.h" 18 #include "base/threading/thread_task_runner_handle.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // closer to what's actually happening in production. 54 // closer to what's actually happening in production.
54 // The delays used by TPMTokenGetter should be monotonically increasing, so 55 // The delays used by TPMTokenGetter should be monotonically increasing, so
55 // the fake task runner does not handle task reordering based on the delays. 56 // the fake task runner does not handle task reordering based on the delays.
56 class FakeTaskRunner : public base::TaskRunner { 57 class FakeTaskRunner : public base::TaskRunner {
57 public: 58 public:
58 // |delays|: Vector to which the dalays seen by the task runner are saved. 59 // |delays|: Vector to which the dalays seen by the task runner are saved.
59 explicit FakeTaskRunner(std::vector<int64_t>* delays) : delays_(delays) {} 60 explicit FakeTaskRunner(std::vector<int64_t>* delays) : delays_(delays) {}
60 61
61 // base::TaskRunner overrides: 62 // base::TaskRunner overrides:
62 bool PostDelayedTask(const tracked_objects::Location& from_here, 63 bool PostDelayedTask(const tracked_objects::Location& from_here,
63 const base::Closure& task, 64 base::Closure task,
64 base::TimeDelta delay) override { 65 base::TimeDelta delay) override {
65 delays_->push_back(delay.InMilliseconds()); 66 delays_->push_back(delay.InMilliseconds());
66 base::ThreadTaskRunnerHandle::Get()->PostTask(from_here, task); 67 base::ThreadTaskRunnerHandle::Get()->PostTask(from_here, std::move(task));
67 return true; 68 return true;
68 } 69 }
69 bool RunsTasksOnCurrentThread() const override { return true; } 70 bool RunsTasksOnCurrentThread() const override { return true; }
70 71
71 protected: 72 protected:
72 ~FakeTaskRunner() override {} 73 ~FakeTaskRunner() override {}
73 74
74 private: 75 private:
75 // The vector of delays. 76 // The vector of delays.
76 std::vector<int64_t>* delays_; 77 std::vector<int64_t>* delays_;
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 EXPECT_EQ("2222", reported_info.pin); 514 EXPECT_EQ("2222", reported_info.pin);
514 EXPECT_EQ(1, reported_info.slot_id); 515 EXPECT_EQ(1, reported_info.slot_id);
515 516
516 const int64_t kExpectedDelays[] = {100}; 517 const int64_t kExpectedDelays[] = {100};
517 EXPECT_EQ(std::vector<int64_t>(kExpectedDelays, 518 EXPECT_EQ(std::vector<int64_t>(kExpectedDelays,
518 kExpectedDelays + arraysize(kExpectedDelays)), 519 kExpectedDelays + arraysize(kExpectedDelays)),
519 delays_); 520 delays_);
520 } 521 }
521 522
522 } // namespace 523 } // namespace
OLDNEW
« no previous file with comments | « chromeos/dbus/blocking_method_caller_unittest.cc ('k') | components/history/core/browser/history_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698