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

Side by Side Diff: content/child/indexed_db/proxy_webidbfactory_impl.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/child/indexed_db/proxy_webidbfactory_impl.h" 5 #include "content/child/indexed_db/proxy_webidbfactory_impl.h"
6 6
7 #include "content/child/thread_safe_sender.h" 7 #include "content/child/thread_safe_sender.h"
8 #include "content/child/indexed_db/indexed_db_dispatcher.h" 8 #include "content/child/indexed_db/indexed_db_dispatcher.h"
9 #include "third_party/WebKit/public/platform/WebCString.h" 9 #include "third_party/WebKit/public/platform/WebCString.h"
10 #include "third_party/WebKit/public/platform/WebString.h" 10 #include "third_party/WebKit/public/platform/WebString.h"
11 11
12 using WebKit::WebIDBCallbacks; 12 using blink::WebIDBCallbacks;
13 using WebKit::WebIDBDatabase; 13 using blink::WebIDBDatabase;
14 using WebKit::WebIDBDatabaseCallbacks; 14 using blink::WebIDBDatabaseCallbacks;
15 using WebKit::WebString; 15 using blink::WebString;
16 16
17 namespace content { 17 namespace content {
18 18
19 RendererWebIDBFactoryImpl::RendererWebIDBFactoryImpl( 19 RendererWebIDBFactoryImpl::RendererWebIDBFactoryImpl(
20 ThreadSafeSender* thread_safe_sender) 20 ThreadSafeSender* thread_safe_sender)
21 : thread_safe_sender_(thread_safe_sender) { 21 : thread_safe_sender_(thread_safe_sender) {
22 } 22 }
23 23
24 RendererWebIDBFactoryImpl::~RendererWebIDBFactoryImpl() { 24 RendererWebIDBFactoryImpl::~RendererWebIDBFactoryImpl() {
25 } 25 }
(...skipping 28 matching lines...) Expand all
54 const WebString& name, 54 const WebString& name,
55 WebIDBCallbacks* callbacks, 55 WebIDBCallbacks* callbacks,
56 const WebString& database_identifier) { 56 const WebString& database_identifier) {
57 IndexedDBDispatcher* dispatcher = 57 IndexedDBDispatcher* dispatcher =
58 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get()); 58 IndexedDBDispatcher::ThreadSpecificInstance(thread_safe_sender_.get());
59 dispatcher->RequestIDBFactoryDeleteDatabase( 59 dispatcher->RequestIDBFactoryDeleteDatabase(
60 name, callbacks, database_identifier.utf8()); 60 name, callbacks, database_identifier.utf8());
61 } 61 }
62 62
63 } // namespace content 63 } // namespace content
OLDNEW
« no previous file with comments | « content/child/indexed_db/proxy_webidbfactory_impl.h ('k') | content/child/npapi/npobject_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698