NaCl: Update revision in DEPS, r12770 -> r12773
[chromium-blink-merge.git] / chrome / browser / ui / bookmarks / bookmark_tab_helper.cc
blob7d706962207c8e9ea803d70fc6c4e9b025ff15fe
1 // Copyright (c) 2012 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.
5 #include "chrome/browser/ui/bookmarks/bookmark_tab_helper.h"
7 #include "chrome/browser/bookmarks/bookmark_model.h"
8 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
9 #include "chrome/browser/defaults.h"
10 #include "chrome/browser/prefs/pref_service_syncable.h"
11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/search/search.h"
13 #include "chrome/browser/ui/bookmarks/bookmark_tab_helper_delegate.h"
14 #include "chrome/browser/ui/bookmarks/bookmark_utils.h"
15 #include "chrome/browser/ui/sad_tab.h"
16 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
17 #include "chrome/common/pref_names.h"
18 #include "content/public/browser/navigation_entry.h"
19 #include "content/public/browser/web_contents.h"
21 namespace {
23 bool IsNTPWebUI(content::WebContents* web_contents) {
24 content::WebUI* web_ui = NULL;
25 // Use the committed entry so the bookmarks bar disappears at the same time
26 // the page does.
27 if (web_contents->GetController().GetLastCommittedEntry())
28 web_ui = web_contents->GetCommittedWebUI();
29 else
30 web_ui = web_contents->GetWebUI();
31 return web_ui && NewTabUI::FromWebUIController(web_ui->GetController());
34 bool IsInstantNTP(content::WebContents* web_contents) {
35 // Use the committed entry so the bookmarks bar disappears at the same time
36 // the page does.
37 const content::NavigationEntry* entry =
38 web_contents->GetController().GetLastCommittedEntry();
39 if (!entry)
40 entry = web_contents->GetController().GetVisibleEntry();
41 return chrome::NavEntryIsInstantNTP(web_contents, entry);
44 } // namespace
46 DEFINE_WEB_CONTENTS_USER_DATA_KEY(BookmarkTabHelper);
48 BookmarkTabHelper::~BookmarkTabHelper() {
49 if (bookmark_model_)
50 bookmark_model_->RemoveObserver(this);
53 bool BookmarkTabHelper::ShouldShowBookmarkBar() const {
54 if (web_contents()->ShowingInterstitialPage())
55 return false;
57 if (chrome::SadTab::ShouldShow(web_contents()->GetCrashedStatus()))
58 return false;
60 if (!browser_defaults::bookmarks_enabled)
61 return false;
63 Profile* profile =
64 Profile::FromBrowserContext(web_contents()->GetBrowserContext());
66 #if !defined(OS_CHROMEOS)
67 if (profile->IsGuestSession())
68 return false;
69 #endif
71 PrefService* prefs = profile->GetPrefs();
72 if (prefs->IsManagedPreference(prefs::kShowBookmarkBar) &&
73 !prefs->GetBoolean(prefs::kShowBookmarkBar))
74 return false;
76 return IsNTPWebUI(web_contents()) || IsInstantNTP(web_contents());
79 BookmarkTabHelper::BookmarkTabHelper(content::WebContents* web_contents)
80 : content::WebContentsObserver(web_contents),
81 is_starred_(false),
82 bookmark_model_(NULL),
83 delegate_(NULL),
84 bookmark_drag_(NULL) {
85 Profile* profile =
86 Profile::FromBrowserContext(web_contents->GetBrowserContext());
87 bookmark_model_= BookmarkModelFactory::GetForProfile(profile);
88 if (bookmark_model_)
89 bookmark_model_->AddObserver(this);
92 void BookmarkTabHelper::UpdateStarredStateForCurrentURL() {
93 const bool old_state = is_starred_;
94 is_starred_ = (bookmark_model_ &&
95 bookmark_model_->IsBookmarked(chrome::GetURLToBookmark(web_contents())));
97 if (is_starred_ != old_state && delegate_)
98 delegate_->URLStarredChanged(web_contents(), is_starred_);
101 void BookmarkTabHelper::BookmarkModelChanged() {
104 void BookmarkTabHelper::BookmarkModelLoaded(BookmarkModel* model,
105 bool ids_reassigned) {
106 UpdateStarredStateForCurrentURL();
109 void BookmarkTabHelper::BookmarkNodeAdded(BookmarkModel* model,
110 const BookmarkNode* parent,
111 int index) {
112 UpdateStarredStateForCurrentURL();
115 void BookmarkTabHelper::BookmarkNodeRemoved(BookmarkModel* model,
116 const BookmarkNode* parent,
117 int old_index,
118 const BookmarkNode* node) {
119 UpdateStarredStateForCurrentURL();
122 void BookmarkTabHelper::BookmarkAllNodesRemoved(BookmarkModel* model) {
123 UpdateStarredStateForCurrentURL();
126 void BookmarkTabHelper::BookmarkNodeChanged(BookmarkModel* model,
127 const BookmarkNode* node) {
128 UpdateStarredStateForCurrentURL();
131 void BookmarkTabHelper::DidNavigateMainFrame(
132 const content::LoadCommittedDetails& /*details*/,
133 const content::FrameNavigateParams& /*params*/) {
134 UpdateStarredStateForCurrentURL();