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

  /external/webkit/Source/WebKit2/Shared/
MutableDictionary.cpp 27 #include "MutableDictionary.h"
31 MutableDictionary::MutableDictionary()
35 MutableDictionary::~MutableDictionary()
39 bool MutableDictionary::add(const String& key, APIObject* item)
45 bool MutableDictionary::set(const String& key, APIObject* item)
51 void MutableDictionary::remove(const String& key)
MutableDictionary.h 33 // MutableDictionary - A mutable dictionary type suitable for vending to an API.
35 class MutableDictionary : public ImmutableDictionary {
37 static PassRefPtr<MutableDictionary> create()
39 return adoptRef(new MutableDictionary);
42 ~MutableDictionary();
51 MutableDictionary();

Completed in 186 milliseconds