| 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_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 // Add/RemoveObserver calls. | 455 // Add/RemoveObserver calls. |
| 456 TemplateURLService* template_url_service_; | 456 TemplateURLService* template_url_service_; |
| 457 | 457 |
| 458 // Tracks this preference to determine whether bookmark editing is allowed. | 458 // Tracks this preference to determine whether bookmark editing is allowed. |
| 459 BooleanPrefMember edit_bookmarks_enabled_; | 459 BooleanPrefMember edit_bookmarks_enabled_; |
| 460 | 460 |
| 461 // This is a debug state variable that stores if the WebContents was null | 461 // This is a debug state variable that stores if the WebContents was null |
| 462 // during the last RefreshPageAction. | 462 // during the last RefreshPageAction. |
| 463 bool web_contents_null_at_last_refresh_; | 463 bool web_contents_null_at_last_refresh_; |
| 464 | 464 |
| 465 // These allow toggling the verbose security state behavior via flags. | |
| 466 bool should_show_secure_state_; | |
| 467 bool should_show_nonsecure_state_; | |
| 468 bool should_animate_secure_state_; | |
| 469 bool should_animate_nonsecure_state_; | |
| 470 | |
| 471 DISALLOW_COPY_AND_ASSIGN(LocationBarView); | 465 DISALLOW_COPY_AND_ASSIGN(LocationBarView); |
| 472 }; | 466 }; |
| 473 | 467 |
| 474 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ | 468 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_BAR_VIEW_H_ |
| OLD | NEW |