Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: chrome/browser/views/tabs/tab_renderer_data.h

Issue 2821011: Removes phantom tabs. (Closed)
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/views/tabs/tab.cc ('k') | chrome/browser/views/tabs/tab_strip.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/views/tabs/tab.cc ('k') | chrome/browser/views/tabs/tab_strip.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698