OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 class CharacterData; | 50 class CharacterData; |
51 class DOMEditor; | 51 class DOMEditor; |
52 class Document; | 52 class Document; |
53 class Element; | 53 class Element; |
54 class EventTarget; | 54 class EventTarget; |
55 class ExceptionState; | 55 class ExceptionState; |
56 class InspectorFrontend; | 56 class InspectorFrontend; |
57 class InspectorHistory; | 57 class InspectorHistory; |
58 class InspectorOverlay; | 58 class InspectorOverlay; |
59 class InspectorPageAgent; | 59 class InspectorPageAgent; |
60 class InspectorState; | |
61 class InstrumentingAgents; | |
62 class Node; | 60 class Node; |
63 class PlatformGestureEvent; | 61 class PlatformGestureEvent; |
64 class PlatformTouchEvent; | 62 class PlatformTouchEvent; |
65 class RevalidateStyleAttributeTask; | 63 class RevalidateStyleAttributeTask; |
66 class ShadowRoot; | 64 class ShadowRoot; |
67 | 65 |
68 struct HighlightConfig; | 66 struct HighlightConfig; |
69 | 67 |
70 typedef String ErrorString; | 68 typedef String ErrorString; |
71 | 69 |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 OwnPtrWillBeMember<InspectorHistory> m_history; | 274 OwnPtrWillBeMember<InspectorHistory> m_history; |
277 OwnPtrWillBeMember<DOMEditor> m_domEditor; | 275 OwnPtrWillBeMember<DOMEditor> m_domEditor; |
278 bool m_suppressAttributeModifiedEvent; | 276 bool m_suppressAttributeModifiedEvent; |
279 RawPtrWillBeMember<Listener> m_listener; | 277 RawPtrWillBeMember<Listener> m_listener; |
280 }; | 278 }; |
281 | 279 |
282 | 280 |
283 } // namespace blink | 281 } // namespace blink |
284 | 282 |
285 #endif // !defined(InspectorDOMAgent_h) | 283 #endif // !defined(InspectorDOMAgent_h) |
OLD | NEW |