OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
6 #define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #import <Cocoa/Cocoa.h> | 11 #import <Cocoa/Cocoa.h> |
12 | 12 |
13 #include "base/scoped_nsobject.h" | 13 #include "base/scoped_nsobject.h" |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 #include "base/scoped_vector.h" | 15 #include "base/scoped_vector.h" |
16 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 16 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
17 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" | 17 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" |
18 #include "chrome/browser/extensions/image_loading_tracker.h" | 18 #include "chrome/browser/extensions/image_loading_tracker.h" |
19 #include "chrome/browser/first_run/first_run.h" | 19 #include "chrome/browser/first_run/first_run.h" |
20 #include "chrome/browser/location_bar.h" | 20 #include "chrome/browser/ui/omnibox/location_bar.h" |
21 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 21 #include "chrome/browser/ui/toolbar/toolbar_model.h" |
22 #include "chrome/common/content_settings_types.h" | 22 #include "chrome/common/content_settings_types.h" |
23 | 23 |
24 @class AutocompleteTextField; | 24 @class AutocompleteTextField; |
25 class CommandUpdater; | 25 class CommandUpdater; |
26 class ContentSettingDecoration; | 26 class ContentSettingDecoration; |
27 class ContentSettingImageModel; | 27 class ContentSettingImageModel; |
28 class EVBubbleDecoration; | 28 class EVBubbleDecoration; |
29 @class ExtensionPopupController; | 29 @class ExtensionPopupController; |
30 class KeywordHintDecoration; | 30 class KeywordHintDecoration; |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 // Used to register for notifications received by NotificationObserver. | 228 // Used to register for notifications received by NotificationObserver. |
229 NotificationRegistrar registrar_; | 229 NotificationRegistrar registrar_; |
230 | 230 |
231 // Used to schedule a task for the first run info bubble. | 231 // Used to schedule a task for the first run info bubble. |
232 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; | 232 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; |
233 | 233 |
234 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); | 234 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); |
235 }; | 235 }; |
236 | 236 |
237 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 237 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
OLD | NEW |