| 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_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 class ActionBoxButtonView; | 32 class ActionBoxButtonView; |
| 33 class CommandUpdater; | 33 class CommandUpdater; |
| 34 class ContentSettingBubbleModelDelegate; | 34 class ContentSettingBubbleModelDelegate; |
| 35 class ContentSettingImageView; | 35 class ContentSettingImageView; |
| 36 class EVBubbleView; | 36 class EVBubbleView; |
| 37 class ExtensionAction; | 37 class ExtensionAction; |
| 38 class GURL; | 38 class GURL; |
| 39 class InstantController; | 39 class InstantController; |
| 40 class KeywordHintView; | 40 class KeywordHintView; |
| 41 class LocationBarSeparatorView; |
| 41 class LocationIconView; | 42 class LocationIconView; |
| 42 class OpenPDFInReaderView; | 43 class OpenPDFInReaderView; |
| 43 class PageActionWithBadgeView; | 44 class PageActionWithBadgeView; |
| 44 class PageActionImageView; | 45 class PageActionImageView; |
| 45 class Profile; | 46 class Profile; |
| 46 class ScriptBubbleIconView; | 47 class ScriptBubbleIconView; |
| 47 class SelectedKeywordView; | 48 class SelectedKeywordView; |
| 48 class StarView; | 49 class StarView; |
| 49 class TemplateURLService; | 50 class TemplateURLService; |
| 50 class WebIntentsButtonView; | 51 class WebIntentsButtonView; |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 // Shown if the user has selected a keyword. | 449 // Shown if the user has selected a keyword. |
| 449 SelectedKeywordView* selected_keyword_view_; | 450 SelectedKeywordView* selected_keyword_view_; |
| 450 | 451 |
| 451 // View responsible for showing suggested text. This is NULL when there is no | 452 // View responsible for showing suggested text. This is NULL when there is no |
| 452 // suggested text. | 453 // suggested text. |
| 453 views::Label* suggested_text_view_; | 454 views::Label* suggested_text_view_; |
| 454 | 455 |
| 455 // Shown if the selected url has a corresponding keyword. | 456 // Shown if the selected url has a corresponding keyword. |
| 456 KeywordHintView* keyword_hint_view_; | 457 KeywordHintView* keyword_hint_view_; |
| 457 | 458 |
| 459 // View responsible for showing text "<Search provider> Search", which appears |
| 460 // when omnibox replaces the URL with its query terms and there's enough space |
| 461 // in omnibox. |
| 462 views::Label* search_token_view_; |
| 463 LocationBarSeparatorView* search_token_separator_view_; |
| 464 |
| 458 // The content setting views. | 465 // The content setting views. |
| 459 ContentSettingViews content_setting_views_; | 466 ContentSettingViews content_setting_views_; |
| 460 | 467 |
| 461 // The zoom icon. | 468 // The zoom icon. |
| 462 ZoomView* zoom_view_; | 469 ZoomView* zoom_view_; |
| 463 | 470 |
| 464 // The icon to open a PDF in Reader. | 471 // The icon to open a PDF in Reader. |
| 465 OpenPDFInReaderView* open_pdf_in_reader_view_; | 472 OpenPDFInReaderView* open_pdf_in_reader_view_; |
| 466 | 473 |
| 467 // The current page actions. | 474 // The current page actions. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 // in the right location. | 509 // in the right location. |
| 503 int animation_offset_; | 510 int animation_offset_; |
| 504 | 511 |
| 505 // Used to register for notifications received by NotificationObserver. | 512 // Used to register for notifications received by NotificationObserver. |
| 506 content::NotificationRegistrar registrar_; | 513 content::NotificationRegistrar registrar_; |
| 507 | 514 |
| 508 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); | 515 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); |
| 509 }; | 516 }; |
| 510 | 517 |
| 511 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 518 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
| OLD | NEW |