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

  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmark_api_helpers.h 48 void GetMetaInfo(const BookmarkNode& node,
bookmark_api_helpers.cc 137 void GetMetaInfo(const BookmarkNode& node,
154 GetMetaInfo(*(node.GetChild(i)), id_to_meta_info_map);
bookmark_api_helpers_unittest.cc 176 TEST_F(ExtensionBookmarksTest, GetMetaInfo) {
178 GetMetaInfo(*model_->other_node(), &id_to_meta_info_map);
  /external/chromium_org/components/bookmarks/browser/
bookmark_codec_unittest.cc 410 EXPECT_TRUE(model->root_node()->GetMetaInfo("model_info", &meta_value));
412 EXPECT_FALSE(model->root_node()->GetMetaInfo("other_key", &meta_value));
416 EXPECT_TRUE(child->GetMetaInfo("node_info", &meta_value));
418 EXPECT_FALSE(child->GetMetaInfo("other_key", &meta_value));
467 model->root_node()->GetMetaInfo(kSyncTransactionVersionKey, &meta_value));
469 bbn->GetChild(1)->GetMetaInfo(kSyncTransactionVersionKey, &meta_value));
470 EXPECT_TRUE(bbn->GetChild(0)->GetMetaInfo(kNormalKey, &meta_value));
472 EXPECT_TRUE(bbn->GetChild(1)->GetMetaInfo(kNormalKey, &meta_value));
474 EXPECT_TRUE(bbn->GetChild(0)->GetMetaInfo(kNestedKey, &meta_value));
bookmark_node.cc 55 bool BookmarkNode::GetMetaInfo(const std::string& key,
bookmark_model_unittest.cc     [all...]
bookmark_node.h 100 bool GetMetaInfo(const std::string& key, std::string* value) const;
bookmark_utils_unittest.cc 348 EXPECT_TRUE(pasted->GetMetaInfo("somekey", &value));
350 EXPECT_TRUE(pasted->GetMetaInfo("someotherkey", &value));
483 EXPECT_TRUE(clone->GetMetaInfo("somekey", &value));
485 EXPECT_TRUE(clone->GetMetaInfo("someotherkey", &value));
bookmark_model.cc 390 if (node->GetMetaInfo(key, &old_value) && old_value == value)
  /external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
bookmark_manager_private_api.cc 55 namespace GetMetaInfo = api::bookmark_manager_private::GetMetaInfo;
666 scoped_ptr<GetMetaInfo::Params> params(GetMetaInfo::Params::Create(*args_));
676 if (node->GetMetaInfo(*params->key, &value)) {
677 GetMetaInfo::Results::Value result;
679 results_ = GetMetaInfo::Results::Create(result);
682 GetMetaInfo::Results::Value result;
683 result.as_object.reset(new GetMetaInfo::Results::Value::Object);
693 results_ = GetMetaInfo::Results::Create(result)
    [all...]
  /external/chromium_org/components/enhanced_bookmarks/
enhanced_bookmark_model.cc 37 if (!node->GetMetaInfo(field, &value))
148 if (!node->GetMetaInfo(kIdKey, &id))
169 if (node->GetMetaInfo(kNoteKey, &description) && !description.empty())
enhanced_bookmark_model_unittest.cc 99 if (!node->GetMetaInfo(name, &value))

Completed in 88 milliseconds