| 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_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 5 #ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
| 6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #import <Cocoa/Cocoa.h> | 13 #import <Cocoa/Cocoa.h> |
| 14 | 14 |
| 15 #include "base/scoped_nsobject.h" | 15 #include "base/scoped_nsobject.h" |
| 16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| 17 #include "base/scoped_vector.h" | 17 #include "base/scoped_vector.h" |
| 18 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 18 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" | 19 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" |
| 20 #include "chrome/browser/extensions/image_loading_tracker.h" | 20 #include "chrome/browser/extensions/image_loading_tracker.h" |
| 21 #include "chrome/browser/first_run.h" | 21 #include "chrome/browser/first_run/first_run.h" |
| 22 #include "chrome/browser/location_bar.h" | 22 #include "chrome/browser/location_bar.h" |
| 23 #include "chrome/browser/toolbar_model.h" | 23 #include "chrome/browser/toolbar_model.h" |
| 24 #include "chrome/common/content_settings_types.h" | 24 #include "chrome/common/content_settings_types.h" |
| 25 #include "third_party/skia/include/core/SkBitmap.h" | 25 #include "third_party/skia/include/core/SkBitmap.h" |
| 26 | 26 |
| 27 @class AutocompleteTextField; | 27 @class AutocompleteTextField; |
| 28 class CommandUpdater; | 28 class CommandUpdater; |
| 29 class ContentSettingDecoration; | 29 class ContentSettingDecoration; |
| 30 class ContentSettingImageModel; | 30 class ContentSettingImageModel; |
| 31 class EVBubbleDecoration; | 31 class EVBubbleDecoration; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 // Used to register for notifications received by NotificationObserver. | 204 // Used to register for notifications received by NotificationObserver. |
| 205 NotificationRegistrar registrar_; | 205 NotificationRegistrar registrar_; |
| 206 | 206 |
| 207 // Used to schedule a task for the first run info bubble. | 207 // Used to schedule a task for the first run info bubble. |
| 208 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; | 208 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; |
| 209 | 209 |
| 210 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); | 210 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); |
| 211 }; | 211 }; |
| 212 | 212 |
| 213 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 213 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
| OLD | NEW |