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_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 Mode mode_; | 349 Mode mode_; |
350 | 350 |
351 // Counts the number of times consumers have asked us to be hidden. | 351 // Counts the number of times consumers have asked us to be hidden. |
352 // We should actually be hidden iff this is greater than zero. | 352 // We should actually be hidden iff this is greater than zero. |
353 int force_hidden_count_; | 353 int force_hidden_count_; |
354 | 354 |
355 // True if we should show a focus rect while the location entry field is | 355 // True if we should show a focus rect while the location entry field is |
356 // focused. Used when the toolbar is in full keyboard accessibility mode. | 356 // focused. Used when the toolbar is in full keyboard accessibility mode. |
357 bool show_focus_rect_; | 357 bool show_focus_rect_; |
358 | 358 |
359 // Used schedule a task for the first run info bubble. | 359 // Used to schedule a task for the first run info bubble. |
360 ScopedRunnableMethodFactory<LocationBarView> first_run_bubble_; | 360 ScopedRunnableMethodFactory<LocationBarView> first_run_bubble_; |
361 | 361 |
362 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); | 362 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); |
363 }; | 363 }; |
364 | 364 |
365 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 365 #endif // CHROME_BROWSER_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
OLD | NEW |