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

Side by Side Diff: chrome/browser/android/offline_pages/evaluation/evaluation_test_scheduler.h

Issue 2432593002: [Offline Pages] Add basic evaluation tests and related changes. (Closed)
Patch Set: Fix build failure. Created 4 years, 1 month 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 #ifndef CHROME_BROWSER_ANDROID_OFFLINE_PAGES_EVALUATION_EVALUATION_TEST_SCHEDULE R_H_
6 #define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_EVALUATION_EVALUATION_TEST_SCHEDULE R_H_
7
8 #include "components/offline_pages/background/scheduler.h"
9
10 namespace offline_pages {
11 namespace android {
12
13 class EvaluationTestScheduler : public Scheduler {
14 public:
15 // Scheduler implementation.
16 void Schedule(const TriggerConditions& trigger_conditions) override;
17 void BackupSchedule(const TriggerConditions& trigger_conditions,
18 long delay_in_seconds) override;
19 void Unschedule() override;
20
21 // Callback used by user request.
22 void ImmediateScheduleCallback(bool result);
23 };
24
25 } // namespace android
26 } // namespace offline_pages
27
28 #endif // CHROME_BROWSER_ANDROID_OFFLINE_PAGES_EVALUATION_EVALUATION_TEST_SCHED ULER_H_
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/android/offline_pages/evaluation/evaluation_test_scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698