| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // +build appengine | 5 // +build appengine |
| 6 | 6 |
| 7 package context | 7 package context |
| 8 | 8 |
| 9 import ( | 9 import ( |
| 10 "appengine" | 10 "appengine" |
| 11 "appengine/datastore" | 11 "appengine/datastore" |
| 12 | 12 |
| 13 "github.com/luci/luci-go/common/logging" |
| 13 "github.com/mjibson/goon" | 14 "github.com/mjibson/goon" |
| 14 | |
| 15 "infra/libs/logging" | |
| 16 ) | 15 ) |
| 17 | 16 |
| 18 /// Kinds + Keys | 17 /// Kinds + Keys |
| 19 | 18 |
| 20 type Kinder interface { | 19 type Kinder interface { |
| 21 Kind(src interface{}) string | 20 Kind(src interface{}) string |
| 22 } | 21 } |
| 23 | 22 |
| 24 type KindSetter interface { | 23 type KindSetter interface { |
| 25 KindNameResolver() goon.KindNameResolver | 24 KindNameResolver() goon.KindNameResolver |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 99 |
| 101 type DangerousContext interface { | 100 type DangerousContext interface { |
| 102 DangerousContexter | 101 DangerousContexter |
| 103 Context | 102 Context |
| 104 } | 103 } |
| 105 | 104 |
| 106 type DangerousTransactionerContext interface { | 105 type DangerousTransactionerContext interface { |
| 107 DangerousContexter | 106 DangerousContexter |
| 108 TransactionerContext | 107 TransactionerContext |
| 109 } | 108 } |
| OLD | NEW |