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

Side by Side Diff: components/offline_pages/background/scheduler_stub.cc

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: rebase Created 4 years 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
(Empty)
1 // Copyright 2016 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.
4
5 #include "components/offline_pages/background/scheduler_stub.h"
6
7 namespace offline_pages {
8
9 SchedulerStub::SchedulerStub()
10 : schedule_called_(false),
11 backup_schedule_called_(false),
12 unschedule_called_(false),
13 schedule_delay_(0L),
14 conditions_(false, 0, false) {}
15
16 SchedulerStub::~SchedulerStub() {}
17
18 void SchedulerStub::Schedule(const TriggerConditions& trigger_conditions) {
19 schedule_called_ = true;
20 conditions_ = trigger_conditions;
21 }
22
23 void SchedulerStub::BackupSchedule(const TriggerConditions& trigger_conditions,
24 long delay_in_seconds) {
25 backup_schedule_called_ = true;
26 schedule_delay_ = delay_in_seconds;
27 conditions_ = trigger_conditions;
28 }
29
30 void SchedulerStub::Unschedule() {
31 unschedule_called_ = true;
32 }
33
34 } // namespace offline_pages
OLDNEW
« no previous file with comments | « components/offline_pages/background/scheduler_stub.h ('k') | components/offline_pages/background/update_request_task.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698