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

Side by Side Diff: chrome/browser/ntp_snippets/bookmark_last_visit_updater.cc

Issue 2200113002: [New CL] Add a tab helper to record the last visit date for each bookmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sky's comments Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ntp_snippets/bookmark_last_visit_updater.h"
6
7 #include "components/bookmarks/browser/bookmark_model.h"
Marc Treib 2016/08/02 13:37:11 This isn't strictly required, since you're not doi
Philipp Keck 2016/08/02 14:06:51 Done.
8 #include "components/ntp_snippets/bookmarks/bookmark_last_visit_utils.h"
9 #include "content/public/browser/navigation_handle.h"
10
11 DEFINE_WEB_CONTENTS_USER_DATA_KEY(BookmarkLastVisitUpdater);
12
13 BookmarkLastVisitUpdater::~BookmarkLastVisitUpdater() {}
14
15 // static
16 void BookmarkLastVisitUpdater::CreateForWebContentsWithBookmarkModel(
17 content::WebContents* web_contents,
18 bookmarks::BookmarkModel* bookmark_model) {
19 DCHECK(web_contents);
Marc Treib 2016/08/02 13:37:11 This is superfluous - if it were null, we'd crash
Philipp Keck 2016/08/02 14:06:51 Done.
20 web_contents->SetUserData(UserDataKey(), new BookmarkLastVisitUpdater(
21 web_contents, bookmark_model));
22 }
23
24 BookmarkLastVisitUpdater::BookmarkLastVisitUpdater(
25 content::WebContents* web_contents,
26 bookmarks::BookmarkModel* bookmark_model)
27 : content::WebContentsObserver(web_contents),
28 bookmark_model_(bookmark_model) {}
29
30 void BookmarkLastVisitUpdater::DidStartNavigation(
31 content::NavigationHandle* navigation_handle) {
32 if (!navigation_handle->IsInMainFrame() || navigation_handle->IsErrorPage())
33 return;
34 ntp_snippets::UpdateBookmarkOnURLVisitedInMainFrame(
35 bookmark_model_, navigation_handle->GetURL());
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698