Chromium Code Reviews| Index: content/browser/indexed_db/indexed_db_callbacks.h |
| diff --git a/content/browser/indexed_db/indexed_db_callbacks.h b/content/browser/indexed_db/indexed_db_callbacks.h |
| index 4ae10a9bef69beed0a5f2a43782c5f282438da54..d73168b103e667c19f7769b74c0ca44ab0ea9a31 100644 |
| --- a/content/browser/indexed_db/indexed_db_callbacks.h |
| +++ b/content/browser/indexed_db/indexed_db_callbacks.h |
| @@ -106,6 +106,8 @@ class CONTENT_EXPORT IndexedDBCallbacks |
| blink::WebIDBDataLoss data_loss() const { return data_loss_; } |
| + void SetConnectionOpenStartTime(const base::TimeTicks& start_time); |
| + |
| protected: |
| virtual ~IndexedDBCallbacks(); |
| @@ -135,6 +137,7 @@ class CONTENT_EXPORT IndexedDBCallbacks |
| // The "blocked" event should be sent at most once per request. |
| bool sent_blocked_; |
| + base::TimeTicks conn_open_start_time_; |
|
jsbell
2014/08/18 18:25:50
nit: Avoid uncommon abbreviations in names (sorry,
|
| DISALLOW_COPY_AND_ASSIGN(IndexedDBCallbacks); |
| }; |