Home | History | Annotate | Download | only in inspector

Lines Matching defs:exceptionState

28 #include "bindings/v8/ExceptionState.h"
164 virtual bool perform(ExceptionState& exceptionState) OVERRIDE
168 return redo(exceptionState);
171 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
173 return m_styleSheet->setText(m_oldText, exceptionState);
176 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
178 return m_styleSheet->setText(m_text, exceptionState);
218 virtual bool perform(ExceptionState& exceptionState) OVERRIDE
220 return redo(exceptionState);
223 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
229 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
233 bool result = m_styleSheet->setPropertyText(m_cssId, m_propertyIndex, m_text, m_overwrite, exceptionState);
270 virtual bool perform(ExceptionState& exceptionState) OVERRIDE
272 m_oldSelector = m_styleSheet->ruleSelector(m_cssId, exceptionState);
273 if (exceptionState.hadException())
275 return redo(exceptionState);
278 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
280 return m_styleSheet->setRuleSelector(m_cssId, m_oldSelector, exceptionState);
283 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
285 return m_styleSheet->setRuleSelector(m_cssId, m_selector, exceptionState);
305 virtual bool perform(ExceptionState& exceptionState) OVERRIDE
307 return redo(exceptionState);
310 virtual bool undo(ExceptionState& exceptionState) OVERRIDE
312 return m_styleSheet->deleteRule(m_newId, exceptionState);
315 virtual bool redo(ExceptionState& exceptionState) OVERRIDE
317 CSSStyleRule* cssStyleRule = m_styleSheet->addRule(m_selector, exceptionState);
318 if (exceptionState.hadException())
788 TrackExceptionState exceptionState;
789 m_domAgent->history()->perform(adoptRefWillBeNoop(new SetStyleSheetTextAction(inspectorStyleSheet, text)), exceptionState);
790 *errorString = InspectorDOMAgent::toErrorString(exceptionState);
850 TrackExceptionState exceptionState;
851 bool success = m_domAgent->history()->perform(adoptRefWillBeNoop(new SetPropertyTextAction(inspectorStyleSheet, compoundId, propertyIndex, text, overwrite)), exceptionState);
854 *errorString = InspectorDOMAgent::toErrorString(exceptionState);
871 TrackExceptionState exceptionState;
872 exceptionState);
877 *errorString = InspectorDOMAgent::toErrorString(exceptionState);
911 TrackExceptionState exceptionState;
913 bool success = m_domAgent->history()->perform(action, exceptionState);
915 *errorString = InspectorDOMAgent::toErrorString(exceptionState);
1193 TrackExceptionState exceptionState;
1194 RefPtrWillBeRawPtr<Element> styleElement = document->createElement("style", exceptionState);
1195 if (!exceptionState.hadException())
1196 styleElement->setAttribute("type", "text/css", exceptionState);
1197 if (!exceptionState.hadException()) {
1209 targetNode->appendChild(styleElement, exceptionState);
1214 if (exceptionState.hadException())