OLD | NEW |
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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 17 matching lines...) Expand all Loading... |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef Metadata_h | 31 #ifndef Metadata_h |
32 #define Metadata_h | 32 #define Metadata_h |
33 | 33 |
34 #include "bindings/core/v8/ScriptWrappable.h" | 34 #include "bindings/core/v8/ScriptWrappable.h" |
35 #include "platform/FileMetadata.h" | 35 #include "platform/FileMetadata.h" |
36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
37 | 37 |
38 namespace WebCore { | 38 namespace blink { |
39 | 39 |
40 class Metadata : public GarbageCollectedFinalized<Metadata>, public ScriptWrappa
ble { | 40 class Metadata : public GarbageCollectedFinalized<Metadata>, public ScriptWrappa
ble { |
41 public: | 41 public: |
42 static Metadata* create(const FileMetadata& platformMetadata) | 42 static Metadata* create(const FileMetadata& platformMetadata) |
43 { | 43 { |
44 return new Metadata(platformMetadata); | 44 return new Metadata(platformMetadata); |
45 } | 45 } |
46 | 46 |
47 static Metadata* create(Metadata* metadata) | 47 static Metadata* create(Metadata* metadata) |
48 { | 48 { |
(...skipping 12 matching lines...) Expand all Loading... |
61 { | 61 { |
62 ScriptWrappable::init(this); | 62 ScriptWrappable::init(this); |
63 } | 63 } |
64 | 64 |
65 FileMetadata m_platformMetadata; | 65 FileMetadata m_platformMetadata; |
66 }; | 66 }; |
67 | 67 |
68 } // namespace | 68 } // namespace |
69 | 69 |
70 #endif // Metadata_h | 70 #endif // Metadata_h |
OLD | NEW |