| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_VIEWS_LOCATION_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 Profile* profile, | 349 Profile* profile, |
| 350 const ExtensionAction* page_action, | 350 const ExtensionAction* page_action, |
| 351 const BubblePositioner* bubble_positioner); | 351 const BubblePositioner* bubble_positioner); |
| 352 virtual ~PageActionImageView(); | 352 virtual ~PageActionImageView(); |
| 353 | 353 |
| 354 // Overridden from view for the mouse hovering. | 354 // Overridden from view for the mouse hovering. |
| 355 virtual bool OnMousePressed(const views::MouseEvent& event); | 355 virtual bool OnMousePressed(const views::MouseEvent& event); |
| 356 | 356 |
| 357 // Overridden from LocationBarImageView. | 357 // Overridden from LocationBarImageView. |
| 358 virtual void ShowInfoBubble(); | 358 virtual void ShowInfoBubble(); |
| 359 virtual void Paint(gfx::Canvas* canvas); | |
| 360 | 359 |
| 361 // Overridden from ImageLoadingTracker. | 360 // Overridden from ImageLoadingTracker. |
| 362 virtual void OnImageLoaded(SkBitmap* image, size_t index); | 361 virtual void OnImageLoaded(SkBitmap* image, size_t index); |
| 363 | 362 |
| 364 // Called to notify the PageAction that it should determine whether to be | 363 // Called to notify the PageAction that it should determine whether to be |
| 365 // visible or hidden. |contents| is the TabContents that is active, |url| | 364 // visible or hidden. |contents| is the TabContents that is active, |url| |
| 366 // is the current page URL. | 365 // is the current page URL. |
| 367 void UpdateVisibility(TabContents* contents, GURL url); | 366 void UpdateVisibility(TabContents* contents, GURL url); |
| 368 | 367 |
| 369 private: | 368 private: |
| (...skipping 18 matching lines...) Expand all Loading... |
| 388 int current_tab_id_; | 387 int current_tab_id_; |
| 389 | 388 |
| 390 // The URL we are currently showing the icon for. | 389 // The URL we are currently showing the icon for. |
| 391 GURL current_url_; | 390 GURL current_url_; |
| 392 | 391 |
| 393 // The string to show for a tooltip; | 392 // The string to show for a tooltip; |
| 394 std::string tooltip_; | 393 std::string tooltip_; |
| 395 | 394 |
| 396 DISALLOW_COPY_AND_ASSIGN(PageActionImageView); | 395 DISALLOW_COPY_AND_ASSIGN(PageActionImageView); |
| 397 }; | 396 }; |
| 398 friend class PageActionImageView; | |
| 399 | 397 |
| 400 // Both Layout and OnChanged call into this. This updates the contents | 398 // Both Layout and OnChanged call into this. This updates the contents |
| 401 // of the 3 views: selected_keyword, keyword_hint and type_search_view. If | 399 // of the 3 views: selected_keyword, keyword_hint and type_search_view. If |
| 402 // force_layout is true, or one of these views has changed in such a way as | 400 // force_layout is true, or one of these views has changed in such a way as |
| 403 // to necessitate a layout, layout occurs as well. | 401 // to necessitate a layout, layout occurs as well. |
| 404 void DoLayout(bool force_layout); | 402 void DoLayout(bool force_layout); |
| 405 | 403 |
| 406 // Returns the height in pixels of the margin at the top of the bar. | 404 // Returns the height in pixels of the margin at the top of the bar. |
| 407 int TopMargin() const; | 405 int TopMargin() const; |
| 408 | 406 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 // The positioner that places the omnibox and info bubbles. | 528 // The positioner that places the omnibox and info bubbles. |
| 531 const BubblePositioner* bubble_positioner_; | 529 const BubblePositioner* bubble_positioner_; |
| 532 | 530 |
| 533 // Storage of string needed for accessibility. | 531 // Storage of string needed for accessibility. |
| 534 std::wstring accessible_name_; | 532 std::wstring accessible_name_; |
| 535 | 533 |
| 536 DISALLOW_COPY_AND_ASSIGN(LocationBarView); | 534 DISALLOW_COPY_AND_ASSIGN(LocationBarView); |
| 537 }; | 535 }; |
| 538 | 536 |
| 539 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ | 537 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_VIEW_H_ |
| OLD | NEW |