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

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_bridge.h

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // C++ bridge class between Chromium and Cocoa to connect the 5 // C++ bridge class between Chromium and Cocoa to connect the
6 // Bookmarks (model) with the Bookmark Bar (view). 6 // Bookmarks (model) with the Bookmark Bar (view).
7 // 7 //
8 // There is exactly one BookmarkBarBridge per BookmarkBarController / 8 // There is exactly one BookmarkBarBridge per BookmarkBarController /
9 // BrowserWindowController / Browser. 9 // BrowserWindowController / Browser.
10 10
11 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_ 11 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_
12 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_ 12 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_
13 13
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/prefs/pref_change_registrar.h"
17 #include "components/bookmarks/browser/bookmark_model_observer.h" 16 #include "components/bookmarks/browser/bookmark_model_observer.h"
17 #include "components/prefs/pref_change_registrar.h"
18 18
19 class Profile; 19 class Profile;
20 @class BookmarkBarController; 20 @class BookmarkBarController;
21 21
22 class BookmarkBarBridge : public bookmarks::BookmarkModelObserver { 22 class BookmarkBarBridge : public bookmarks::BookmarkModelObserver {
23 public: 23 public:
24 BookmarkBarBridge(Profile* profile, 24 BookmarkBarBridge(Profile* profile,
25 BookmarkBarController* controller, 25 BookmarkBarController* controller,
26 bookmarks::BookmarkModel* model); 26 bookmarks::BookmarkModel* model);
27 ~BookmarkBarBridge() override; 27 ~BookmarkBarBridge() override;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 PrefChangeRegistrar profile_pref_registrar_; 65 PrefChangeRegistrar profile_pref_registrar_;
66 66
67 // Updates the visibility of the apps shortcut and the managed bookmarks 67 // Updates the visibility of the apps shortcut and the managed bookmarks
68 // folder based on the pref values. 68 // folder based on the pref values.
69 void OnExtraButtonsVisibilityChanged(); 69 void OnExtraButtonsVisibilityChanged();
70 70
71 DISALLOW_COPY_AND_ASSIGN(BookmarkBarBridge); 71 DISALLOW_COPY_AND_ASSIGN(BookmarkBarBridge);
72 }; 72 };
73 73
74 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_ 74 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698