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

Side by Side Diff: Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.cpp

Issue 403013002: Rename WebCore to blink in Modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved. 3 * Copyright (C) 2009, 2011 Google Inc. All Rights Reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 15 matching lines...) Expand all
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 29
30 #include "modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h" 30 #include "modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h"
31 31
32 #include "core/dom/ExecutionContext.h" 32 #include "core/dom/ExecutionContext.h"
33 #include "modules/indexeddb/IDBFactory.h" 33 #include "modules/indexeddb/IDBFactory.h"
34 #include "modules/indexeddb/IndexedDBClient.h" 34 #include "modules/indexeddb/IndexedDBClient.h"
35 35
36 namespace WebCore { 36 namespace blink {
37 37
38 WorkerGlobalScopeIndexedDatabase::WorkerGlobalScopeIndexedDatabase() 38 WorkerGlobalScopeIndexedDatabase::WorkerGlobalScopeIndexedDatabase()
39 { 39 {
40 } 40 }
41 41
42 WorkerGlobalScopeIndexedDatabase::~WorkerGlobalScopeIndexedDatabase() 42 WorkerGlobalScopeIndexedDatabase::~WorkerGlobalScopeIndexedDatabase()
43 { 43 {
44 } 44 }
45 45
46 const char* WorkerGlobalScopeIndexedDatabase::supplementName() 46 const char* WorkerGlobalScopeIndexedDatabase::supplementName()
(...skipping 22 matching lines...) Expand all
69 m_idbFactory = IDBFactory::create(IndexedDBClient::create()); 69 m_idbFactory = IDBFactory::create(IndexedDBClient::create());
70 return m_idbFactory.get(); 70 return m_idbFactory.get();
71 } 71 }
72 72
73 void WorkerGlobalScopeIndexedDatabase::trace(Visitor* visitor) 73 void WorkerGlobalScopeIndexedDatabase::trace(Visitor* visitor)
74 { 74 {
75 visitor->trace(m_idbFactory); 75 visitor->trace(m_idbFactory);
76 WillBeHeapSupplement<WorkerGlobalScope>::trace(visitor); 76 WillBeHeapSupplement<WorkerGlobalScope>::trace(visitor);
77 } 77 }
78 78
79 } // namespace WebCore 79 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/WorkerGlobalScopeIndexedDatabase.h ('k') | Source/modules/mediasource/HTMLVideoElementMediaSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698