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

Side by Side Diff: chrome/browser/ui/views/tabs/tab_renderer_data.cc

Issue 7067007: Remove prefix eliding (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h" 5 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h"
6 6
7 TabRendererData::TabRendererData() 7 TabRendererData::TabRendererData()
8 : network_state(NETWORK_STATE_NONE), 8 : network_state(NETWORK_STATE_NONE),
9 common_prefix_length(0),
10 loading(false), 9 loading(false),
11 crashed_status(base::TERMINATION_STATUS_STILL_RUNNING), 10 crashed_status(base::TERMINATION_STATUS_STILL_RUNNING),
12 incognito(false), 11 incognito(false),
13 show_icon(true), 12 show_icon(true),
14 mini(false), 13 mini(false),
15 blocked(false), 14 blocked(false),
16 app(false) { 15 app(false) {
17 } 16 }
18 17
19 TabRendererData::~TabRendererData() {} 18 TabRendererData::~TabRendererData() {}
20 19
21 bool TabRendererData::Equals(const TabRendererData& data) { 20 bool TabRendererData::Equals(const TabRendererData& data) {
22 return 21 return
23 favicon.pixelRef() && 22 favicon.pixelRef() &&
24 favicon.pixelRef() == data.favicon.pixelRef() && 23 favicon.pixelRef() == data.favicon.pixelRef() &&
25 favicon.pixelRefOffset() == data.favicon.pixelRefOffset() && 24 favicon.pixelRefOffset() == data.favicon.pixelRefOffset() &&
26 network_state == data.network_state && 25 network_state == data.network_state &&
27 title == data.title && 26 title == data.title &&
28 url == data.url && 27 url == data.url &&
29 common_prefix_length == data.common_prefix_length &&
30 loading == data.loading && 28 loading == data.loading &&
31 crashed_status == data.crashed_status && 29 crashed_status == data.crashed_status &&
32 incognito == data.incognito && 30 incognito == data.incognito &&
33 show_icon == data.show_icon && 31 show_icon == data.show_icon &&
34 mini == data.mini && 32 mini == data.mini &&
35 blocked == data.blocked && 33 blocked == data.blocked &&
36 app == data.app; 34 app == data.app;
37 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698