| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 virtual void getKey(const WebKit::WebIDBKey& key, | 42 virtual void getKey(const WebKit::WebIDBKey& key, |
| 43 WebKit::WebIDBCallbacks* callbacks, | 43 WebKit::WebIDBCallbacks* callbacks, |
| 44 const WebKit::WebIDBTransaction& transaction, | 44 const WebKit::WebIDBTransaction& transaction, |
| 45 WebKit::WebExceptionCode& ec); | 45 WebKit::WebExceptionCode& ec); |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 int32 idb_index_id_; | 48 int32 idb_index_id_; |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 #endif // CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ | 51 #endif // CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ |
| OLD | NEW |