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

Side by Side Diff: Source/modules/webdatabase/DatabaseBackendBase.h

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stale refernence to weboriginexport in .gpyi 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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple 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 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 22 matching lines...) Expand all
33 #include "modules/webdatabase/sqlite/SQLiteDatabase.h" 33 #include "modules/webdatabase/sqlite/SQLiteDatabase.h"
34 #include "modules/webdatabase/DatabaseBasicTypes.h" 34 #include "modules/webdatabase/DatabaseBasicTypes.h"
35 #include "modules/webdatabase/DatabaseDetails.h" 35 #include "modules/webdatabase/DatabaseDetails.h"
36 #include "modules/webdatabase/DatabaseError.h" 36 #include "modules/webdatabase/DatabaseError.h"
37 #include "wtf/Forward.h" 37 #include "wtf/Forward.h"
38 #include "wtf/RefPtr.h" 38 #include "wtf/RefPtr.h"
39 #include "wtf/ThreadSafeRefCounted.h" 39 #include "wtf/ThreadSafeRefCounted.h"
40 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
41 41
42 #if !LOG_DISABLED || !ERROR_DISABLED 42 #if !LOG_DISABLED || !ERROR_DISABLED
43 #include "weborigin/SecurityOrigin.h" 43 #include "platform/weborigin/SecurityOrigin.h"
44 #endif 44 #endif
45 45
46 namespace WebCore { 46 namespace WebCore {
47 47
48 class DatabaseAuthorizer; 48 class DatabaseAuthorizer;
49 class DatabaseContext; 49 class DatabaseContext;
50 class DatabaseBase; 50 class DatabaseBase;
51 class SecurityOrigin; 51 class SecurityOrigin;
52 52
53 class DatabaseBackendBase : public ThreadSafeRefCounted<DatabaseBackendBase> { 53 class DatabaseBackendBase : public ThreadSafeRefCounted<DatabaseBackendBase> {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 SQLiteDatabase m_sqliteDatabase; 145 SQLiteDatabase m_sqliteDatabase;
146 146
147 RefPtr<DatabaseAuthorizer> m_databaseAuthorizer; 147 RefPtr<DatabaseAuthorizer> m_databaseAuthorizer;
148 148
149 friend class DatabaseServer; 149 friend class DatabaseServer;
150 }; 150 };
151 151
152 } // namespace WebCore 152 } // namespace WebCore
153 153
154 #endif // DatabaseBackendBase_h 154 #endif // DatabaseBackendBase_h
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/Database.cpp ('k') | Source/modules/webdatabase/DatabaseBackendBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698