author | Boris Zbarsky <bzbarsky@mit.edu> |
Fri, 08 Apr 2011 00:02:10 -0700 | |
changeset 67613 | 27d6a4a5e20f25c4833fa95e78d7f83a889ea2dd |
parent 67612 | 0f4ec85e7a0c91e46a09fdf11488e7f72a836613 |
child 67614 | ce7276f42938df8a83b0556a70473fefe808c7c4 |
child 67663 | fe86883e3a52c1fc97f9d7fd2e35ec3247882cf1 |
child 67805 | 3bbc2fd96c48c821a986203ceae198449d02ae4b |
push id | 1 |
push user | root |
push date | Tue, 26 Apr 2011 22:38:44 +0000 |
treeherder | mozilla-beta@bfdb6e623a36 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 581177 |
milestone | 2.2a1pre |
first release with | nightly linux32
27d6a4a5e20f
/
4.2a1pre
/
20110408030509
/
files
nightly linux64
27d6a4a5e20f
/
4.2a1pre
/
20110408030509
/
files
nightly mac
27d6a4a5e20f
/
4.2a1pre
/
20110408030509
/
files
nightly win32
27d6a4a5e20f
/
4.2a1pre
/
20110408030509
/
files
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
releases | nightly linux32
4.2a1pre
/
20110408030509
/
pushlog to previous
nightly linux64
4.2a1pre
/
20110408030509
/
pushlog to previous
nightly mac
4.2a1pre
/
20110408030509
/
pushlog to previous
nightly win32
4.2a1pre
/
20110408030509
/
pushlog to previous
|
content/base/public/nsIContent.h | file | annotate | diff | comparison | revisions | |
content/base/public/nsINode.h | file | annotate | diff | comparison | revisions |
--- a/content/base/public/nsIContent.h +++ b/content/base/public/nsIContent.h @@ -71,18 +71,18 @@ enum nsLinkState { eLinkState_Unknown = 0, eLinkState_Unvisited = 1, eLinkState_Visited = 2, eLinkState_NotLink = 3 }; // IID for the nsIContent interface #define NS_ICONTENT_IID \ -{ 0x5788c9eb, 0x646a, 0x4285, \ - { 0xa2, 0x8c, 0xde, 0x0d, 0x43, 0x6b, 0x47, 0x72 } } +{ 0x32b94ba0, 0x1ebc, 0x4dfc, \ + { 0xba, 0x8c, 0x5f, 0x24, 0x2b, 0xcb, 0xaf, 0xce } } /** * A node of content in a document's content model. This interface * is supported by all content objects. */ class nsIContent : public nsINode { public: #ifdef MOZILLA_INTERNAL_API
--- a/content/base/public/nsINode.h +++ b/content/base/public/nsINode.h @@ -272,18 +272,18 @@ private: #define DOM_USER_DATA 1 #define DOM_USER_DATA_HANDLER 2 #ifdef MOZ_SMIL #define SMIL_MAPPED_ATTR_ANIMVAL 3 #endif // MOZ_SMIL // IID for the nsINode interface #define NS_INODE_IID \ -{ 0x2a8dc794, 0x9178, 0x400e, \ - { 0x81, 0xff, 0x55, 0x30, 0x30, 0xb6, 0x74, 0x3b } } +{ 0x4776aa9a, 0xa886, 0x40c9, \ + { 0xae, 0x4c, 0x4d, 0x92, 0xe2, 0xf0, 0xd9, 0x61 } } /** * An internal interface that abstracts some DOMNode-related parts that both * nsIContent and nsIDocument share. An instance of this interface has a list * of nsIContent children and provides access to them. */ class nsINode : public nsPIDOMEventTarget, public nsWrapperCache @@ -683,17 +683,16 @@ public: */ nsIPrincipal* NodePrincipal() const { return mNodeInfo->NodeInfoManager()->DocumentPrincipal(); } /** * Get the parent nsIContent for this node. * @return the parent, or null if no parent or the parent is not an nsIContent - * Implemented in nsIContent.h */ nsIContent* GetParent() const { return NS_LIKELY(GetBoolFlag(ParentIsContent)) ? reinterpret_cast<nsIContent*>(mParent) : nsnull; } /** * Get the parent nsINode for this node. This can be either an nsIContent,