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

Side by Side Diff: Source/modules/indexeddb/IDBAny.h

Issue 334263022: Include wtf/RefCounted.h less often in modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/modules/gamepad/WebKitGamepadList.h ('k') | Source/modules/indexeddb/IDBKeyRange.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
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 12 matching lines...) Expand all
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef IDBAny_h 26 #ifndef IDBAny_h
27 #define IDBAny_h 27 #define IDBAny_h
28 28
29 #include "bindings/v8/ScriptWrappable.h" 29 #include "bindings/v8/ScriptWrappable.h"
30 #include "modules/indexeddb/IDBKey.h" 30 #include "modules/indexeddb/IDBKey.h"
31 #include "modules/indexeddb/IDBKeyPath.h" 31 #include "modules/indexeddb/IDBKeyPath.h"
32 #include "platform/SharedBuffer.h" 32 #include "platform/SharedBuffer.h"
33 #include "wtf/PassRefPtr.h" 33 #include "wtf/Forward.h"
34 #include "wtf/RefCounted.h"
35 #include "wtf/RefPtr.h"
36 #include "wtf/text/WTFString.h" 34 #include "wtf/text/WTFString.h"
37 35
38 namespace blink { 36 namespace blink {
39 37
40 class WebBlobInfo; 38 class WebBlobInfo;
41 39
42 } 40 }
43 41
44 namespace WebCore { 42 namespace WebCore {
45 43
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 const IDBKeyPath m_idbKeyPath; 148 const IDBKeyPath m_idbKeyPath;
151 const RefPtr<SharedBuffer> m_buffer; 149 const RefPtr<SharedBuffer> m_buffer;
152 const Vector<blink::WebBlobInfo>* m_blobInfo; 150 const Vector<blink::WebBlobInfo>* m_blobInfo;
153 const String m_string; 151 const String m_string;
154 const int64_t m_integer; 152 const int64_t m_integer;
155 }; 153 };
156 154
157 } // namespace WebCore 155 } // namespace WebCore
158 156
159 #endif // IDBAny_h 157 #endif // IDBAny_h
OLDNEW
« no previous file with comments | « Source/modules/gamepad/WebKitGamepadList.h ('k') | Source/modules/indexeddb/IDBKeyRange.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698