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

Side by Side Diff: task_scheduler/go/db/db.go

Issue 2296763008: [task scheduler] Move files from build_scheduler/ to task_scheduler/ (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 4 years, 3 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
« no previous file with comments | « task_scheduler/go/db/comments_test.go ('k') | task_scheduler/go/db/local_db/busywork/main.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package db 1 package db
2 2
3 import ( 3 import (
4 "errors" 4 "errors"
5 "io" 5 "io"
6 "time" 6 "time"
7 7
8 "github.com/skia-dev/glog" 8 "github.com/skia-dev/glog"
9 ) 9 )
10 10
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 } else { 150 } else {
151 return tasks[0], nil 151 return tasks[0], nil
152 } 152 }
153 } 153 }
154 154
155 // RemoteDB allows retrieving tasks and full access to comments. 155 // RemoteDB allows retrieving tasks and full access to comments.
156 type RemoteDB interface { 156 type RemoteDB interface {
157 TaskReader 157 TaskReader
158 CommentDB 158 CommentDB
159 } 159 }
OLDNEW
« no previous file with comments | « task_scheduler/go/db/comments_test.go ('k') | task_scheduler/go/db/local_db/busywork/main.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698