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

  /external/chromium_org/extensions/browser/
info_map.h 30 class InfoMap : public base::RefCountedThreadSafe<InfoMap> {
32 InfoMap();
113 friend class base::RefCountedThreadSafe<InfoMap>;
120 ~InfoMap();
info_map.cc 29 struct InfoMap::ExtraData {
43 InfoMap::ExtraData::ExtraData()
47 InfoMap::ExtraData::~ExtraData() {}
49 InfoMap::InfoMap() : signin_process_id_(-1) {
52 void InfoMap::AddExtension(const Extension* extension,
65 void InfoMap::RemoveExtension(const std::string& extension_id,
89 base::Time InfoMap::GetInstallTime(const std::string& extension_id) const {
96 bool InfoMap::IsIncognitoEnabled(const std::string& extension_id) const {
104 bool InfoMap::CanCrossIncognito(const Extension* extension) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.h 102 InfoMap& infoMap = ShapeOutsideInfo::infoMap();
103 if (ShapeOutsideInfo* info = infoMap.get(&key))
105 InfoMap::AddResult result = infoMap.add(&key, ShapeOutsideInfo::createInfo(key));
108 static void removeInfo(const RenderBox& key) { infoMap().remove(&key); }
109 static ShapeOutsideInfo* info(const RenderBox& key) { return infoMap().get(&key); }
133 typedef HashMap<const RenderBox*, OwnPtr<ShapeOutsideInfo> > InfoMap;
134 static InfoMap& infoMap(
    [all...]

Completed in 61 milliseconds