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_COCOA_LOCATION_BAR_LOCATION_BAR_VIEW_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_LOCATION_BAR_LOCATION_BAR_VIEW_MAC_H_ |
6 #define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_LOCATION_BAR_VIEW_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_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/memory/scoped_nsobject.h" | 13 #include "base/memory/scoped_nsobject.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 17 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
18 #include "chrome/browser/extensions/image_loading_tracker.h" | 18 #include "chrome/browser/extensions/image_loading_tracker.h" |
19 #include "chrome/browser/prefs/pref_member.h" | 19 #include "chrome/browser/prefs/pref_member.h" |
20 #include "chrome/browser/ui/browser.h" | |
21 #include "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" | 20 #include "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" |
22 #include "chrome/browser/ui/omnibox/location_bar.h" | 21 #include "chrome/browser/ui/omnibox/location_bar.h" |
23 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 22 #include "chrome/browser/ui/toolbar/toolbar_model.h" |
24 #include "chrome/common/content_settings_types.h" | 23 #include "chrome/common/content_settings_types.h" |
25 | 24 |
26 @class AutocompleteTextField; | 25 @class AutocompleteTextField; |
27 class CommandUpdater; | 26 class CommandUpdater; |
28 class ContentSettingDecoration; | 27 class ContentSettingDecoration; |
29 class EVBubbleDecoration; | 28 class EVBubbleDecoration; |
30 class KeywordHintDecoration; | 29 class KeywordHintDecoration; |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 // Used to schedule a task for the first run info bubble. | 224 // Used to schedule a task for the first run info bubble. |
226 base::WeakPtrFactory<LocationBarViewMac> weak_ptr_factory_; | 225 base::WeakPtrFactory<LocationBarViewMac> weak_ptr_factory_; |
227 | 226 |
228 // Used to change the visibility of the star decoration. | 227 // Used to change the visibility of the star decoration. |
229 BooleanPrefMember edit_bookmarks_enabled_; | 228 BooleanPrefMember edit_bookmarks_enabled_; |
230 | 229 |
231 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); | 230 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); |
232 }; | 231 }; |
233 | 232 |
234 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_LOCATION_BAR_VIEW_MAC_H_ | 233 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_LOCATION_BAR_VIEW_MAC_H_ |
OLD | NEW |