| 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 #ifndef CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_ | 5 #ifndef CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_ |
| 6 #define CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_ | 6 #define CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "testing/gmock/include/gmock/gmock.h" | 9 #include "testing/gmock/include/gmock/gmock.h" |
| 9 #include "third_party/WebKit/public/platform/WebBlobInfo.h" | 10 #include "third_party/WebKit/public/platform/WebBlobInfo.h" |
| 10 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBCallbacks.h
" | 11 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBCallbacks.h
" |
| 11 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBDatabaseErr
or.h" | 12 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBDatabaseErr
or.h" |
| 12 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBMetadata.h" | 13 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBMetadata.h" |
| 13 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBValue.h" | 14 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBValue.h" |
| 14 #include "third_party/WebKit/public/web/WebHeap.h" | 15 #include "third_party/WebKit/public/web/WebHeap.h" |
| 15 | 16 |
| 16 namespace blink { | 17 namespace blink { |
| 17 class WebData; | 18 class WebData; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 unsigned short dataLoss, | 50 unsigned short dataLoss, |
| 50 blink::WebString dataLossMessage)); | 51 blink::WebString dataLossMessage)); |
| 51 | 52 |
| 52 private: | 53 private: |
| 53 DISALLOW_COPY_AND_ASSIGN(MockWebIDBCallbacks); | 54 DISALLOW_COPY_AND_ASSIGN(MockWebIDBCallbacks); |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 } // namespace content | 57 } // namespace content |
| 57 | 58 |
| 58 #endif // CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_ | 59 #endif // CONTENT_CHILD_INDEXED_DB_MOCK_WEBIDBCALLBACKS_H_ |
| OLD | NEW |