OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 #include "bindings/v8/ScriptWrappable.h" | 34 #include "bindings/v8/ScriptWrappable.h" |
35 #include "heap/Handle.h" | 35 #include "heap/Handle.h" |
36 #include "wtf/PassRefPtr.h" | 36 #include "wtf/PassRefPtr.h" |
37 #include "wtf/RefCounted.h" | 37 #include "wtf/RefCounted.h" |
38 #include "wtf/RefPtr.h" | 38 #include "wtf/RefPtr.h" |
39 | 39 |
40 namespace WebCore { | 40 namespace WebCore { |
41 | 41 |
42 class StorageInfo FINAL : public RefCountedWillBeGarbageCollectedFinalized<Stora
geInfo>, public ScriptWrappable { | 42 class StorageInfo FINAL : public RefCountedWillBeGarbageCollectedFinalized<Stora
geInfo>, public ScriptWrappable { |
43 DECLARE_GC_INFO; | |
44 public: | 43 public: |
45 static PassRefPtrWillBeRawPtr<StorageInfo> create(unsigned long long usage,
unsigned long long quota) | 44 static PassRefPtrWillBeRawPtr<StorageInfo> create(unsigned long long usage,
unsigned long long quota) |
46 { | 45 { |
47 return adoptRefWillBeNoop(new StorageInfo(usage, quota)); | 46 return adoptRefWillBeNoop(new StorageInfo(usage, quota)); |
48 } | 47 } |
49 | 48 |
50 unsigned long long usage() const { return m_usage; } | 49 unsigned long long usage() const { return m_usage; } |
51 unsigned long long quota() const { return m_quota; } | 50 unsigned long long quota() const { return m_quota; } |
52 | 51 |
53 ~StorageInfo(); | 52 ~StorageInfo(); |
54 | 53 |
55 void trace(Visitor*) { } | 54 void trace(Visitor*) { } |
56 | 55 |
57 private: | 56 private: |
58 StorageInfo(unsigned long long usage, unsigned long long quota); | 57 StorageInfo(unsigned long long usage, unsigned long long quota); |
59 | 58 |
60 unsigned long long m_usage; | 59 unsigned long long m_usage; |
61 unsigned long long m_quota; | 60 unsigned long long m_quota; |
62 }; | 61 }; |
63 | 62 |
64 } // namespace WebCore | 63 } // namespace WebCore |
65 | 64 |
66 #endif // StorageInfo_h | 65 #endif // StorageInfo_h |
OLD | NEW |