OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2012 Adobe Systems Incorporated. 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 | 8 * 1. Redistributions of source code must retain the above |
9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
10 * disclaimer. | 10 * disclaimer. |
(...skipping 30 matching lines...) Expand all Loading... |
41 { | 41 { |
42 return adoptRef(new WebKitCSSArrayFunctionValue()); | 42 return adoptRef(new WebKitCSSArrayFunctionValue()); |
43 } | 43 } |
44 | 44 |
45 String customCssText() const; | 45 String customCssText() const; |
46 | 46 |
47 PassRefPtr<WebKitCSSArrayFunctionValue> cloneForCSSOM() const; | 47 PassRefPtr<WebKitCSSArrayFunctionValue> cloneForCSSOM() const; |
48 | 48 |
49 bool equals(const WebKitCSSArrayFunctionValue&) const; | 49 bool equals(const WebKitCSSArrayFunctionValue&) const; |
50 | 50 |
51 void reportDescendantMemoryUsage(MemoryObjectInfo*) const; | |
52 | |
53 private: | 51 private: |
54 WebKitCSSArrayFunctionValue(); | 52 WebKitCSSArrayFunctionValue(); |
55 WebKitCSSArrayFunctionValue(const WebKitCSSArrayFunctionValue& cloneFrom); | 53 WebKitCSSArrayFunctionValue(const WebKitCSSArrayFunctionValue& cloneFrom); |
56 }; | 54 }; |
57 | 55 |
58 } // namespace WebCore | 56 } // namespace WebCore |
59 | 57 |
60 | 58 |
61 #endif | 59 #endif |
OLD | NEW |