| 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_TABS_TAB_RENDERER_DATA_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_TAB_RENDERER_DATA_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_RENDERER_DATA_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_RENDERER_DATA_H_ |
| 7 | 7 |
| 8 #include "base/process_util.h" | 8 #include "base/process_util.h" |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "chrome/browser/ui/search/search_types.h" | 10 #include "chrome/browser/ui/search/search_types.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 NetworkState network_state; | 42 NetworkState network_state; |
| 43 string16 title; | 43 string16 title; |
| 44 GURL url; | 44 GURL url; |
| 45 bool loading; | 45 bool loading; |
| 46 base::TerminationStatus crashed_status; | 46 base::TerminationStatus crashed_status; |
| 47 bool incognito; | 47 bool incognito; |
| 48 bool show_icon; | 48 bool show_icon; |
| 49 bool mini; | 49 bool mini; |
| 50 bool blocked; | 50 bool blocked; |
| 51 bool app; | 51 bool app; |
| 52 bool recording; |
| 52 chrome::search::Mode::Type mode; | 53 chrome::search::Mode::Type mode; |
| 53 double gradient_background_opacity; | 54 double gradient_background_opacity; |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_RENDERER_DATA_H_ | 57 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_RENDERER_DATA_H_ |
| OLD | NEW |