| 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 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 #include <stddef.h> | 9 #include <stddef.h> |
| 10 | 10 |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/macros.h" | 14 #include "base/macros.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/ui/browser.h" | 17 #include "chrome/browser/ui/browser.h" |
| 18 #include "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" | 18 #include "chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h" |
| 19 #include "chrome/browser/ui/location_bar/location_bar.h" | 19 #include "chrome/browser/ui/location_bar/location_bar.h" |
| 20 #include "chrome/browser/ui/omnibox/chrome_omnibox_edit_controller.h" | 20 #include "chrome/browser/ui/omnibox/chrome_omnibox_edit_controller.h" |
| 21 #include "components/content_settings/core/common/content_settings_types.h" | 21 #include "components/content_settings/core/common/content_settings_types.h" |
| 22 #include "components/prefs/pref_member.h" | 22 #include "components/prefs/pref_member.h" |
| 23 #include "components/security_state/security_state_model.h" | 23 #include "components/security_state/core/security_state_model.h" |
| 24 #include "components/zoom/zoom_event_manager_observer.h" | 24 #include "components/zoom/zoom_event_manager_observer.h" |
| 25 | 25 |
| 26 @class AutocompleteTextField; | 26 @class AutocompleteTextField; |
| 27 class CommandUpdater; | 27 class CommandUpdater; |
| 28 class ContentSettingDecoration; | 28 class ContentSettingDecoration; |
| 29 class KeywordHintDecoration; | 29 class KeywordHintDecoration; |
| 30 class LocationBarDecoration; | 30 class LocationBarDecoration; |
| 31 class LocationIconDecoration; | 31 class LocationIconDecoration; |
| 32 class ManagePasswordsDecoration; | 32 class ManagePasswordsDecoration; |
| 33 class PageActionDecoration; | 33 class PageActionDecoration; |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 // The security level of the location bar icon. | 338 // The security level of the location bar icon. |
| 339 security_state::SecurityStateModel::SecurityLevel security_level_; | 339 security_state::SecurityStateModel::SecurityLevel security_level_; |
| 340 | 340 |
| 341 // Used to schedule a task for the first run info bubble. | 341 // Used to schedule a task for the first run info bubble. |
| 342 base::WeakPtrFactory<LocationBarViewMac> weak_ptr_factory_; | 342 base::WeakPtrFactory<LocationBarViewMac> weak_ptr_factory_; |
| 343 | 343 |
| 344 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); | 344 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); |
| 345 }; | 345 }; |
| 346 | 346 |
| 347 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_LOCATION_BAR_VIEW_MAC_H_ | 347 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_LOCATION_BAR_VIEW_MAC_H_ |
| OLD | NEW |