Index: components/offline_pages/background/scheduler_stub.cc |
diff --git a/components/offline_pages/background/scheduler_stub.cc b/components/offline_pages/background/scheduler_stub.cc |
deleted file mode 100644 |
index 8a2862a783924fdebe101e029b7ad28cd8677ad2..0000000000000000000000000000000000000000 |
--- a/components/offline_pages/background/scheduler_stub.cc |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-// Copyright 2016 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "components/offline_pages/background/scheduler_stub.h" |
- |
-namespace offline_pages { |
- |
-SchedulerStub::SchedulerStub() |
- : schedule_called_(false), |
- backup_schedule_called_(false), |
- unschedule_called_(false), |
- schedule_delay_(0L), |
- conditions_(false, 0, false) {} |
- |
-SchedulerStub::~SchedulerStub() {} |
- |
-void SchedulerStub::Schedule(const TriggerConditions& trigger_conditions) { |
- schedule_called_ = true; |
- conditions_ = trigger_conditions; |
-} |
- |
-void SchedulerStub::BackupSchedule(const TriggerConditions& trigger_conditions, |
- long delay_in_seconds) { |
- backup_schedule_called_ = true; |
- schedule_delay_ = delay_in_seconds; |
- conditions_ = trigger_conditions; |
-} |
- |
-void SchedulerStub::Unschedule() { |
- unschedule_called_ = true; |
-} |
- |
-} // namespace offline_pages |