| 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_TABS_TAB_RENDERER_DATA_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_DATA_H_ |
| 6 #define CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_DATA_H_ | 6 #define CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_DATA_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 TabRendererData() | 24 TabRendererData() |
| 25 : network_state(NETWORK_STATE_NONE), | 25 : network_state(NETWORK_STATE_NONE), |
| 26 loading(false), | 26 loading(false), |
| 27 crashed(false), | 27 crashed(false), |
| 28 off_the_record(false), | 28 off_the_record(false), |
| 29 show_icon(true), | 29 show_icon(true), |
| 30 mini(false), | 30 mini(false), |
| 31 blocked(false), | 31 blocked(false), |
| 32 phantom(false), | |
| 33 app(false) { | 32 app(false) { |
| 34 } | 33 } |
| 35 | 34 |
| 36 SkBitmap favicon; | 35 SkBitmap favicon; |
| 37 NetworkState network_state; | 36 NetworkState network_state; |
| 38 string16 title; | 37 string16 title; |
| 39 bool loading; | 38 bool loading; |
| 40 bool crashed; | 39 bool crashed; |
| 41 bool off_the_record; | 40 bool off_the_record; |
| 42 bool show_icon; | 41 bool show_icon; |
| 43 bool mini; | 42 bool mini; |
| 44 bool blocked; | 43 bool blocked; |
| 45 bool phantom; | |
| 46 bool app; | 44 bool app; |
| 47 }; | 45 }; |
| 48 | 46 |
| 49 #endif // CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_DATA_H_ | 47 #endif // CHROME_BROWSER_VIEWS_TABS_TAB_RENDERER_DATA_H_ |
| OLD | NEW |