Searched defs:HTMLImportState (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportState.h38 class HTMLImportState { class in namespace:blink
47 explicit HTMLImportState(Value value = BlockingScriptExecution) function in class:blink::HTMLImportState
54 bool operator==(const HTMLImportState& other) const { return m_value == other.m_value; }
55 bool operator!=(const HTMLImportState& other) const { return !(*this == other); }
56 bool operator<=(const HTMLImportState& other) const { return m_value <= other.m_value; }
62 static HTMLImportState invalidState() { return HTMLImportState(Invalid); }
63 static HTMLImportState blockedState() { return HTMLImportState(BlockingScriptExecution); }
69 inline HTMLImportState
[all...]

Completed in 1125 milliseconds