| 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/kill.h" |
| 9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
| 10 #include "chrome/browser/ui/views/chrome_views_export.h" | 10 #include "chrome/browser/ui/views/chrome_views_export.h" |
| 11 #include "ui/gfx/image/image_skia.h" | 11 #include "ui/gfx/image/image_skia.h" |
| 12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 13 | 13 |
| 14 // Wraps the state needed by the renderers. | 14 // Wraps the state needed by the renderers. |
| 15 struct CHROME_VIEWS_EXPORT TabRendererData { | 15 struct CHROME_VIEWS_EXPORT TabRendererData { |
| 16 // Different types of network activity for a tab. The NetworkState of a tab | 16 // Different types of network activity for a tab. The NetworkState of a tab |
| 17 // may be used to alter the UI (e.g. show different kinds of loading | 17 // may be used to alter the UI (e.g. show different kinds of loading |
| 18 // animations). | 18 // animations). |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 bool incognito; | 69 bool incognito; |
| 70 bool show_icon; | 70 bool show_icon; |
| 71 bool mini; | 71 bool mini; |
| 72 bool blocked; | 72 bool blocked; |
| 73 bool app; | 73 bool app; |
| 74 CaptureState capture_state; | 74 CaptureState capture_state; |
| 75 AudioState audio_state; | 75 AudioState audio_state; |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_RENDERER_DATA_H_ | 78 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_RENDERER_DATA_H_ |
| OLD | NEW |