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 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 Profile* profile); | 159 Profile* profile); |
160 | 160 |
161 // DetachableToolbarView methods: | 161 // DetachableToolbarView methods: |
162 virtual bool IsDetached() const OVERRIDE; | 162 virtual bool IsDetached() const OVERRIDE; |
163 virtual double GetAnimationValue() const OVERRIDE; | 163 virtual double GetAnimationValue() const OVERRIDE; |
164 virtual int GetToolbarOverlap() const OVERRIDE; | 164 virtual int GetToolbarOverlap() const OVERRIDE; |
165 | 165 |
166 // View methods: | 166 // View methods: |
167 virtual gfx::Size GetPreferredSize() const OVERRIDE; | 167 virtual gfx::Size GetPreferredSize() const OVERRIDE; |
168 virtual gfx::Size GetMinimumSize() const OVERRIDE; | 168 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
169 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; | 169 virtual bool CanProcessEventsWithinSubtree() const OVERRIDE; |
170 virtual void Layout() OVERRIDE; | 170 virtual void Layout() OVERRIDE; |
171 virtual void ViewHierarchyChanged( | 171 virtual void ViewHierarchyChanged( |
172 const ViewHierarchyChangedDetails& details) OVERRIDE; | 172 const ViewHierarchyChangedDetails& details) OVERRIDE; |
173 virtual void PaintChildren(gfx::Canvas* canvas, | 173 virtual void PaintChildren(gfx::Canvas* canvas, |
174 const views::CullSet& cull_set) OVERRIDE; | 174 const views::CullSet& cull_set) OVERRIDE; |
175 virtual bool GetDropFormats( | 175 virtual bool GetDropFormats( |
176 int* formats, | 176 int* formats, |
177 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE; | 177 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE; |
178 virtual bool AreDropTypesRequired() OVERRIDE; | 178 virtual bool AreDropTypesRequired() OVERRIDE; |
179 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE; | 179 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE; |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 | 435 |
436 BookmarkBar::State bookmark_bar_state_; | 436 BookmarkBar::State bookmark_bar_state_; |
437 | 437 |
438 // Are we animating to or from the detached state? | 438 // Are we animating to or from the detached state? |
439 bool animating_detached_; | 439 bool animating_detached_; |
440 | 440 |
441 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); | 441 DISALLOW_COPY_AND_ASSIGN(BookmarkBarView); |
442 }; | 442 }; |
443 | 443 |
444 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ | 444 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_BAR_VIEW_H_ |
OLD | NEW |