Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Side by Side Diff: chrome/renderer/renderer_webidbtransaction_impl.cc

Issue 6672057: Move all the message files in chrome that belong in content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/renderer/renderer_webidbtransaction_impl.h" 5 #include "chrome/renderer/renderer_webidbtransaction_impl.h"
6 6
7 #include "chrome/common/indexed_db_messages.h"
8 #include "chrome/renderer/indexed_db_dispatcher.h" 7 #include "chrome/renderer/indexed_db_dispatcher.h"
9 #include "chrome/renderer/render_thread.h" 8 #include "chrome/renderer/render_thread.h"
10 #include "chrome/renderer/renderer_webidbobjectstore_impl.h" 9 #include "chrome/renderer/renderer_webidbobjectstore_impl.h"
10 #include "content/common/indexed_db_messages.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCall backs.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCall backs.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
14 14
15 using WebKit::WebIDBObjectStore; 15 using WebKit::WebIDBObjectStore;
16 using WebKit::WebIDBTransactionCallbacks; 16 using WebKit::WebIDBTransactionCallbacks;
17 using WebKit::WebString; 17 using WebKit::WebString;
18 18
19 RendererWebIDBTransactionImpl::RendererWebIDBTransactionImpl( 19 RendererWebIDBTransactionImpl::RendererWebIDBTransactionImpl(
20 int32 idb_transaction_id) 20 int32 idb_transaction_id)
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 66
67 void RendererWebIDBTransactionImpl::setCallbacks( 67 void RendererWebIDBTransactionImpl::setCallbacks(
68 WebIDBTransactionCallbacks* callbacks) 68 WebIDBTransactionCallbacks* callbacks)
69 { 69 {
70 IndexedDBDispatcher* dispatcher = 70 IndexedDBDispatcher* dispatcher =
71 RenderThread::current()->indexed_db_dispatcher(); 71 RenderThread::current()->indexed_db_dispatcher();
72 dispatcher->RegisterWebIDBTransactionCallbacks(callbacks, 72 dispatcher->RegisterWebIDBTransactionCallbacks(callbacks,
73 idb_transaction_id_); 73 idb_transaction_id_);
74 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698