Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: Source/core/dom/MutationObserver.h

Issue 723473002: Remove unused Dictionary forward declaration and include (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/dom/Element.h ('k') | Source/core/html/canvas/HitRegion.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 24 matching lines...) Expand all
35 #include "platform/heap/Handle.h" 35 #include "platform/heap/Handle.h"
36 #include "wtf/HashSet.h" 36 #include "wtf/HashSet.h"
37 #include "wtf/PassOwnPtr.h" 37 #include "wtf/PassOwnPtr.h"
38 #include "wtf/PassRefPtr.h" 38 #include "wtf/PassRefPtr.h"
39 #include "wtf/RefCounted.h" 39 #include "wtf/RefCounted.h"
40 #include "wtf/RefPtr.h" 40 #include "wtf/RefPtr.h"
41 #include "wtf/Vector.h" 41 #include "wtf/Vector.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class Dictionary;
46 class ExceptionState; 45 class ExceptionState;
47 class MutationCallback; 46 class MutationCallback;
48 class MutationObserver; 47 class MutationObserver;
49 class MutationObserverInit; 48 class MutationObserverInit;
50 class MutationObserverRegistration; 49 class MutationObserverRegistration;
51 class MutationRecord; 50 class MutationRecord;
52 class Node; 51 class Node;
53 52
54 typedef unsigned char MutationObserverOptions; 53 typedef unsigned char MutationObserverOptions;
55 typedef unsigned char MutationRecordDeliveryOptions; 54 typedef unsigned char MutationRecordDeliveryOptions;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 106
108 OwnPtr<MutationCallback> m_callback; 107 OwnPtr<MutationCallback> m_callback;
109 MutationRecordVector m_records; 108 MutationRecordVector m_records;
110 MutationObserverRegistrationSet m_registrations; 109 MutationObserverRegistrationSet m_registrations;
111 unsigned m_priority; 110 unsigned m_priority;
112 }; 111 };
113 112
114 } // namespace blink 113 } // namespace blink
115 114
116 #endif // MutationObserver_h 115 #endif // MutationObserver_h
OLDNEW
« no previous file with comments | « Source/core/dom/Element.h ('k') | Source/core/html/canvas/HitRegion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698