Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim: set ts=8 sts=2 et sw=2 tw=80: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef nsISizeOfEventTarget_h___ |
michael@0 | 8 | #define nsISizeOfEventTarget_h___ |
michael@0 | 9 | |
michael@0 | 10 | #include "mozilla/MemoryReporting.h" |
michael@0 | 11 | #include "nsISupports.h" |
michael@0 | 12 | |
michael@0 | 13 | #define NS_ISIZEOFEVENTTARGET_IID \ |
michael@0 | 14 | {0xa1e08cb9, 0x5455, 0x4593, \ |
michael@0 | 15 | { 0xb4, 0x1f, 0x38, 0x7a, 0x85, 0x44, 0xd0, 0xb5 }} |
michael@0 | 16 | |
michael@0 | 17 | /** |
michael@0 | 18 | * This class is much the same as nsISizeOf, but is specifically for measuring |
michael@0 | 19 | * the contents of nsGlobalWindow::mEventTargetObjects. |
michael@0 | 20 | * |
michael@0 | 21 | * We don't use nsISizeOf because if we did, any object belonging to |
michael@0 | 22 | * mEventTargetObjects that implements nsISizeOf would be measured, which we |
michael@0 | 23 | * may not want (perhaps because the object is also measured elsewhere). |
michael@0 | 24 | */ |
michael@0 | 25 | class nsISizeOfEventTarget : public nsISupports |
michael@0 | 26 | { |
michael@0 | 27 | public: |
michael@0 | 28 | NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISIZEOFEVENTTARGET_IID) |
michael@0 | 29 | |
michael@0 | 30 | /** |
michael@0 | 31 | * Measures the size of the things pointed to by the object, plus the object |
michael@0 | 32 | * itself. |
michael@0 | 33 | */ |
michael@0 | 34 | virtual size_t |
michael@0 | 35 | SizeOfEventTargetIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const = 0; |
michael@0 | 36 | }; |
michael@0 | 37 | |
michael@0 | 38 | NS_DEFINE_STATIC_IID_ACCESSOR(nsISizeOfEventTarget, NS_ISIZEOFEVENTTARGET_IID) |
michael@0 | 39 | |
michael@0 | 40 | #endif /* nsISizeOfEventTarget_h___ */ |