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

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseResource.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
4 * Copyright (C) 2009 Google Inc. All rights reserved. 4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 15 matching lines...) Expand all
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef InspectorDatabaseResource_h 31 #ifndef InspectorDatabaseResource_h
32 #define InspectorDatabaseResource_h 32 #define InspectorDatabaseResource_h
33 33
34 #include "core/inspector/protocol/Database.h" 34 #include "core/inspector/protocol/Database.h"
35 #include "platform/heap/Handle.h" 35 #include "platform/heap/Handle.h"
36 #include "wtf/Forward.h" 36 #include "platform/wtf/Forward.h"
37 #include "wtf/text/WTFString.h" 37 #include "platform/wtf/text/WTFString.h"
38 38
39 namespace blink { 39 namespace blink {
40 class Database; 40 class Database;
41 41
42 class InspectorDatabaseResource 42 class InspectorDatabaseResource
43 : public GarbageCollectedFinalized<InspectorDatabaseResource> { 43 : public GarbageCollectedFinalized<InspectorDatabaseResource> {
44 public: 44 public:
45 static InspectorDatabaseResource* Create(Database*, 45 static InspectorDatabaseResource* Create(Database*,
46 const String& domain, 46 const String& domain,
47 const String& name, 47 const String& name,
(...skipping 14 matching lines...) Expand all
62 Member<Database> database_; 62 Member<Database> database_;
63 String id_; 63 String id_;
64 String domain_; 64 String domain_;
65 String name_; 65 String name_;
66 String version_; 66 String version_;
67 }; 67 };
68 68
69 } // namespace blink 69 } // namespace blink
70 70
71 #endif // InspectorDatabaseResource_h 71 #endif // InspectorDatabaseResource_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698