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

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

Issue 2637843002: Migrate base::TaskRunner from Closure to OnceClosure (Closed)
Patch Set: rebase 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 <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // closer to what's actually happening in production. 54 // closer to what's actually happening in production.
55 // The delays used by TPMTokenGetter should be monotonically increasing, so 55 // The delays used by TPMTokenGetter should be monotonically increasing, so
56 // 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.
57 class FakeTaskRunner : public base::TaskRunner { 57 class FakeTaskRunner : public base::TaskRunner {
58 public: 58 public:
59 // |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.
60 explicit FakeTaskRunner(std::vector<int64_t>* delays) : delays_(delays) {} 60 explicit FakeTaskRunner(std::vector<int64_t>* delays) : delays_(delays) {}
61 61
62 // base::TaskRunner overrides: 62 // base::TaskRunner overrides:
63 bool PostDelayedTask(const tracked_objects::Location& from_here, 63 bool PostDelayedTask(const tracked_objects::Location& from_here,
64 base::Closure task, 64 base::OnceClosure task,
65 base::TimeDelta delay) override { 65 base::TimeDelta delay) override {
66 delays_->push_back(delay.InMilliseconds()); 66 delays_->push_back(delay.InMilliseconds());
67 base::ThreadTaskRunnerHandle::Get()->PostTask(from_here, std::move(task)); 67 base::ThreadTaskRunnerHandle::Get()->PostTask(from_here, std::move(task));
68 return true; 68 return true;
69 } 69 }
70 bool RunsTasksOnCurrentThread() const override { return true; } 70 bool RunsTasksOnCurrentThread() const override { return true; }
71 71
72 protected: 72 protected:
73 ~FakeTaskRunner() override {} 73 ~FakeTaskRunner() override {}
74 74
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 EXPECT_EQ("2222", reported_info.pin); 514 EXPECT_EQ("2222", reported_info.pin);
515 EXPECT_EQ(1, reported_info.slot_id); 515 EXPECT_EQ(1, reported_info.slot_id);
516 516
517 const int64_t kExpectedDelays[] = {100}; 517 const int64_t kExpectedDelays[] = {100};
518 EXPECT_EQ(std::vector<int64_t>(kExpectedDelays, 518 EXPECT_EQ(std::vector<int64_t>(kExpectedDelays,
519 kExpectedDelays + arraysize(kExpectedDelays)), 519 kExpectedDelays + arraysize(kExpectedDelays)),
520 delays_); 520 delays_);
521 } 521 }
522 522
523 } // 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