HomeSort by relevance Sort by last modified time
    Searched refs:IsBookmarked (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/components/favicon/core/browser/
favicon_client.h 22 virtual bool IsBookmarked(const GURL& url) = 0;
  /external/chromium_org/chrome/browser/favicon/
chrome_favicon_client.cc 24 bool ChromeFaviconClient::IsBookmarked(const GURL& url) {
26 return bookmark_model && bookmark_model->IsBookmarked(url);
chrome_favicon_client.h 24 virtual bool IsBookmarked(const GURL& url) OVERRIDE;
favicon_handler.cc 531 return client_->IsBookmarked(url);
  /external/chromium_org/components/history/core/browser/
history_client.cc 12 bool HistoryClient::IsBookmarked(const GURL& url) {
history_client.h 37 virtual bool IsBookmarked(const GURL& url);
  /external/chromium_org/components/history/core/test/
history_client_fake_bookmarks.h 27 virtual bool IsBookmarked(const GURL& url) OVERRIDE;
history_client_fake_bookmarks.cc 33 bool HistoryClientFakeBookmarks::IsBookmarked(const GURL& url) {
  /external/chromium_org/chrome/browser/history/
chrome_history_client.h 31 virtual bool IsBookmarked(const GURL& url) OVERRIDE;
chrome_history_client.cc 38 bool ChromeHistoryClient::IsBookmarked(const GURL& url) {
39 return bookmark_model_->IsBookmarked(url);
expire_history_backend.cc 177 history_client && history_client->IsBookmarked(*url),
432 (history_client && history_client->IsBookmarked(url_row.url()));
scored_history_match.cc 156 now, (history_client && history_client->IsBookmarked(gurl)), visits);
  /external/chromium_org/chrome/browser/autocomplete/
history_provider.cc 64 bookmark_model->IsBookmarked(i->destination_url))) {
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_tab_helper.cc 95 bookmark_model_->IsBookmarked(chrome::GetURLToBookmark(web_contents())));
bookmark_context_menu_controller_unittest.cc 113 ASSERT_FALSE(model_->IsBookmarked(url));
  /external/chromium_org/chrome/browser/ui/webui/omnibox/
omnibox_ui_handler.cc 147 result->combined_results[i]->starred = bookmark_model->IsBookmarked(
154 result_by_provider.results[j]->starred = bookmark_model->IsBookmarked(
  /external/chromium_org/chrome/browser/ui/app_list/search/
omnibox_provider.cc 118 bookmark_model && bookmark_model->IsBookmarked(match_.destination_url);
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_model.cc 263 return bookmark_model && bookmark_model->IsBookmarked(match.destination_url);
omnibox_edit_model.cc     [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_model.h 177 bool IsBookmarked(const GURL& url);
299 // Implementation of IsBookmarked. Before calling this the caller must obtain
bookmark_model_unittest.cc     [all...]
  /external/chromium_org/chrome/browser/
browser_commands_unittest.cc 155 EXPECT_TRUE(model->IsBookmarked(url1));
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_context_menu_unittest.cc 134 ASSERT_FALSE(model_->IsBookmarked(url));
  /external/chromium_org/chrome/browser/android/omnibox/
autocomplete_controller_android.cc 465 bookmark_model && bookmark_model->IsBookmarked(match.destination_url),
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.cc 369 result->SetBoolean("starred", bookmark_model->IsBookmarked(url));
    [all...]

Completed in 512 milliseconds

1 2