| 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> | |
| 11 #include <vector> | |
| 12 | 10 |
| 13 #import <Cocoa/Cocoa.h> | 11 #import <Cocoa/Cocoa.h> |
| 14 | 12 |
| 15 #include "base/scoped_nsobject.h" | 13 #include "base/scoped_nsobject.h" |
| 16 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 17 #include "base/scoped_vector.h" | 15 #include "base/scoped_vector.h" |
| 18 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 16 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
| 19 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" | 17 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" |
| 20 #include "chrome/browser/extensions/image_loading_tracker.h" | 18 #include "chrome/browser/extensions/image_loading_tracker.h" |
| 21 #include "chrome/browser/first_run/first_run.h" | 19 #include "chrome/browser/first_run/first_run.h" |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 // Used to register for notifications received by NotificationObserver. | 208 // Used to register for notifications received by NotificationObserver. |
| 211 NotificationRegistrar registrar_; | 209 NotificationRegistrar registrar_; |
| 212 | 210 |
| 213 // Used to schedule a task for the first run info bubble. | 211 // Used to schedule a task for the first run info bubble. |
| 214 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; | 212 ScopedRunnableMethodFactory<LocationBarViewMac> first_run_bubble_; |
| 215 | 213 |
| 216 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); | 214 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); |
| 217 }; | 215 }; |
| 218 | 216 |
| 219 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 217 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
| OLD | NEW |