Chromium Code Reviews| Index: content/browser/in_process_webkit/indexed_db_callbacks.h |
| diff --git a/content/browser/in_process_webkit/indexed_db_callbacks.h b/content/browser/in_process_webkit/indexed_db_callbacks.h |
| index fc9ff81d4dc44d46a39826904fd9598db72f388a..7e07997089d2f4ad25d933890d755fd057fb7a34 100644 |
| --- a/content/browser/in_process_webkit/indexed_db_callbacks.h |
| +++ b/content/browser/in_process_webkit/indexed_db_callbacks.h |
| @@ -16,15 +16,11 @@ |
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h" |
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" |
| -class IndexedDBMsg_CallbacksSuccessIDBIndex; |
| class IndexedDBMsg_CallbacksSuccessIDBTransaction; |
| // Template magic to figure out what message to send to the renderer based on |
| // which (overloaded) onSuccess method we expect to be called. |
| template <class Type> struct WebIDBToMsgHelper { }; |
|
dgrogan
2011/08/19 21:30:53
Can you add a TODO to (or just) delete WebIDBToMsg
adamk
2011/08/19 22:24:24
I've re-templatized two of these specializations,
|
| -template <> struct WebIDBToMsgHelper<WebKit::WebIDBIndex> { |
| - typedef IndexedDBMsg_CallbacksSuccessIDBIndex MsgType; |
| -}; |
| // The code the following two classes share. |
| class IndexedDBCallbacksBase : public WebKit::WebIDBCallbacks { |