| OLD | NEW |
| 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/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 16 #include "base/prefs/pref_change_registrar.h" | 16 #include "base/prefs/pref_change_registrar.h" |
| 17 #include "components/bookmarks/core/browser/bookmark_model_observer.h" | 17 #include "components/bookmarks/browser/bookmark_model_observer.h" |
| 18 | 18 |
| 19 class Profile; | 19 class Profile; |
| 20 @class BookmarkBarController; | 20 @class BookmarkBarController; |
| 21 | 21 |
| 22 class BookmarkBarBridge : public BookmarkModelObserver { | 22 class BookmarkBarBridge : public BookmarkModelObserver { |
| 23 public: | 23 public: |
| 24 BookmarkBarBridge(Profile* profile, | 24 BookmarkBarBridge(Profile* profile, |
| 25 BookmarkBarController* controller, | 25 BookmarkBarController* controller, |
| 26 BookmarkModel* model); | 26 BookmarkModel* model); |
| 27 virtual ~BookmarkBarBridge(); | 27 virtual ~BookmarkBarBridge(); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 // Needed to react to kShowAppsShortcutInBookmarkBar changes. | 63 // Needed to react to kShowAppsShortcutInBookmarkBar changes. |
| 64 PrefChangeRegistrar profile_pref_registrar_; | 64 PrefChangeRegistrar profile_pref_registrar_; |
| 65 | 65 |
| 66 // Updates the visibility of the apps shortcut based on the pref value. | 66 // Updates the visibility of the apps shortcut based on the pref value. |
| 67 void OnAppsPageShortcutVisibilityPrefChanged(); | 67 void OnAppsPageShortcutVisibilityPrefChanged(); |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(BookmarkBarBridge); | 69 DISALLOW_COPY_AND_ASSIGN(BookmarkBarBridge); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_ | 72 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_BRIDGE_H_ |
| OLD | NEW |