Chromium Code Reviews| 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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 998 | 998 |
| 999 // True if the browser window has been shown at least once. | 999 // True if the browser window has been shown at least once. |
| 1000 bool window_has_shown_; | 1000 bool window_has_shown_; |
| 1001 | 1001 |
| 1002 base::WeakPtr<ValidationMessageBubble> validation_message_bubble_; | 1002 base::WeakPtr<ValidationMessageBubble> validation_message_bubble_; |
| 1003 | 1003 |
| 1004 SigninViewController signin_view_controller_; | 1004 SigninViewController signin_view_controller_; |
| 1005 | 1005 |
| 1006 std::unique_ptr<ScopedKeepAlive> keep_alive_; | 1006 std::unique_ptr<ScopedKeepAlive> keep_alive_; |
| 1007 | 1007 |
| 1008 // True if a console has been logged about an upcoming omnibox warning | |
|
elawrence
2016/10/14 15:12:28
The word "upcoming" feels ambiguous? Does this mea
estark
2016/10/14 17:57:06
Done.
| |
| 1009 // for insecure HTTP pages. This message should only be logged once | |
| 1010 // per main-frame navigation. | |
| 1011 bool logged_http_warning_on_current_navigation_; | |
| 1012 | |
| 1008 // The following factory is used for chrome update coalescing. | 1013 // The following factory is used for chrome update coalescing. |
| 1009 base::WeakPtrFactory<Browser> chrome_updater_factory_; | 1014 base::WeakPtrFactory<Browser> chrome_updater_factory_; |
| 1010 | 1015 |
| 1011 // The following factory is used to close the frame at a later time. | 1016 // The following factory is used to close the frame at a later time. |
| 1012 base::WeakPtrFactory<Browser> weak_factory_; | 1017 base::WeakPtrFactory<Browser> weak_factory_; |
| 1013 | 1018 |
| 1014 DISALLOW_COPY_AND_ASSIGN(Browser); | 1019 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1015 }; | 1020 }; |
| 1016 | 1021 |
| 1017 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1022 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |