aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/views/SkEvent.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/views/SkEvent.h')
-rw-r--r--include/views/SkEvent.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/views/SkEvent.h b/include/views/SkEvent.h
index 0efc19a6ea..aad3f58f3a 100644
--- a/include/views/SkEvent.h
+++ b/include/views/SkEvent.h
@@ -11,11 +11,6 @@
#include "SkMetaData.h"
#include "SkString.h"
-class SkDOM;
-struct SkDOMNode;
-
-#include "../private/SkLeanWindows.h"
-
/** Unique 32bit id used to identify an instance of SkEventSink. When events are
posted, they are posted to a specific sinkID. When it is time to dispatch the
event, the sinkID is used to find the specific SkEventSink object. If it is found,
@@ -143,11 +138,6 @@ public:
/** Return the underlying metadata object */
const SkMetaData& getMetaData() const { return fMeta; }
- /** Call this to initialize the event from the specified XML node */
- void inflate(const SkDOM&, const SkDOMNode*);
-
- SkDEBUGCODE(void dump(const char title[] = nullptr);)
-
///////////////////////////////////////////////////////////////////////////
private:
@@ -155,10 +145,6 @@ private:
mutable char* fType; // may be characters with low bit set to know that it is not a pointer
uint32_t f32;
- // these are for our implementation of the event queue
- SkMSec fTime;
- SkEvent* fNextEvent; // either in the delay or normal event queue
-
void initialize(const char* type, size_t typeLen);
};