| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 class ExtensionAction; | 41 class ExtensionAction; |
| 42 class GURL; | 42 class GURL; |
| 43 class InstantController; | 43 class InstantController; |
| 44 class KeywordHintView; | 44 class KeywordHintView; |
| 45 class LocationIconView; | 45 class LocationIconView; |
| 46 class PageActionWithBadgeView; | 46 class PageActionWithBadgeView; |
| 47 class PageActionImageView; | 47 class PageActionImageView; |
| 48 class Profile; | 48 class Profile; |
| 49 class SelectedKeywordView; | 49 class SelectedKeywordView; |
| 50 class StarView; | 50 class StarView; |
| 51 class TabContentsWrapper; | 51 class TabContents; |
| 52 typedef TabContents TabContentsWrapper; |
| 52 class TemplateURLService; | 53 class TemplateURLService; |
| 53 | 54 |
| 54 namespace views { | 55 namespace views { |
| 55 class BubbleDelegateView; | 56 class BubbleDelegateView; |
| 56 class Widget; | 57 class Widget; |
| 57 } | 58 } |
| 58 | 59 |
| 59 #if defined(OS_WIN) || defined(USE_AURA) | 60 #if defined(OS_WIN) || defined(USE_AURA) |
| 60 class SuggestedTextView; | 61 class SuggestedTextView; |
| 61 #endif | 62 #endif |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 // in the right location. | 492 // in the right location. |
| 492 int animation_offset_; | 493 int animation_offset_; |
| 493 | 494 |
| 494 // Used to register for notifications received by NotificationObserver. | 495 // Used to register for notifications received by NotificationObserver. |
| 495 content::NotificationRegistrar registrar_; | 496 content::NotificationRegistrar registrar_; |
| 496 | 497 |
| 497 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); | 498 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); |
| 498 }; | 499 }; |
| 499 | 500 |
| 500 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 501 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
| OLD | NEW |