Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6419)

Unified Diff: chrome/browser/task_management/providers/web_contents/web_contents_task_provider.cc

Issue 1338023002: Refactor TaskManager's favicon retrieval approach (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/task_management/providers/web_contents/web_contents_task_provider.cc
diff --git a/chrome/browser/task_management/providers/web_contents/web_contents_task_provider.cc b/chrome/browser/task_management/providers/web_contents/web_contents_task_provider.cc
index 025f8056316f05cdc9054d031fd368d5263bef71..9255ccb965a9f226c432f2a384eab7b0f181574e 100644
--- a/chrome/browser/task_management/providers/web_contents/web_contents_task_provider.cc
+++ b/chrome/browser/task_management/providers/web_contents/web_contents_task_provider.cc
@@ -54,10 +54,7 @@ class WebContentsEntry : public content::WebContentsObserver {
void DidNavigateMainFrame(
const content::LoadCommittedDetails& details,
const content::FrameNavigateParams& params) override;
- void DocumentOnLoadCompletedInMainFrame() override;
void TitleWasSet(content::NavigationEntry* entry, bool explicit_set) override;
- void DidUpdateFaviconURL(
- const std::vector<content::FaviconURL>& candidates) override;
private:
// Defines a callback for WebContents::ForEachFrame() to create a
@@ -174,20 +171,6 @@ void WebContentsEntry::DidNavigateMainFrame(
itr->second->UpdateTitle();
}
-void WebContentsEntry::DocumentOnLoadCompletedInMainFrame() {
- // Note: Requesting the task to update its favicon, in any earlier occurring
- // event than this one, may not work properly. We also need to listen to
- // WebContentsObserver::DidUpdateFaviconURL().
- auto itr = tasks_by_frames_.find(web_contents()->GetMainFrame());
- if (itr == tasks_by_frames_.end()) {
- // TODO(afakhry): Validate whether this actually happens in practice.
- NOTREACHED();
- return;
- }
-
- itr->second->UpdateFavicon();
-}
-
void WebContentsEntry::TitleWasSet(content::NavigationEntry* entry,
bool explicit_set) {
auto itr = tasks_by_frames_.find(web_contents()->GetMainFrame());
@@ -200,18 +183,6 @@ void WebContentsEntry::TitleWasSet(content::NavigationEntry* entry,
itr->second->UpdateTitle();
}
-void WebContentsEntry::DidUpdateFaviconURL(
- const std::vector<content::FaviconURL>& candidates) {
- auto itr = tasks_by_frames_.find(web_contents()->GetMainFrame());
- if (itr == tasks_by_frames_.end()) {
- // TODO(afakhry): Validate whether this actually happens in practice.
- NOTREACHED();
- return;
- }
-
- itr->second->UpdateFavicon();
-}
-
void WebContentsEntry::CreateTaskForFrame(RenderFrameHost* render_frame_host) {
DCHECK_EQ(0U, tasks_by_frames_.count(render_frame_host));

Powered by Google App Engine
This is Rietveld 408576698