HomeSort by relevance Sort by last modified time
    Searched refs:AttributeChanged (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementLifecycleCallbacks.h 54 bool hasAttributeChangedCallback() const { return m_which & AttributeChanged; }
55 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) = 0;
62 AttributeChanged = 1 << 3
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.cpp 50 V(attributeChanged, AttributeChanged)
52 PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ExecutionContext* executionContext, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
65 return adoptRef(new V8CustomElementLifecycleCallbacks(executionContext, prototype, created, attached, detached, attributeChanged));
68 static CustomElementLifecycleCallbacks::CallbackType flagSet(v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
79 if (!attributeChanged.IsEmpty())
80 flags |= CustomElementLifecycleCallbacks::AttributeChanged;
91 V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ExecutionContext* executionContext, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
92 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged))
100 , m_attributeChanged(toIsolate(executionContext), attributeChanged)
    [all...]

Completed in 23 milliseconds