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

Unified Diff: chrome/browser/ui/views/tabs/tab_renderer_data.cc

Issue 6579050: Elides the beginning of tab titles that have common prefixes. ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Elides the beginning of tab titles that have common prefixes. ... Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_renderer_data.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/tabs/tab_renderer_data.cc
===================================================================
--- chrome/browser/ui/views/tabs/tab_renderer_data.cc (revision 77820)
+++ chrome/browser/ui/views/tabs/tab_renderer_data.cc (working copy)
@@ -6,6 +6,7 @@
TabRendererData::TabRendererData()
: network_state(NETWORK_STATE_NONE),
+ common_prefix_length(0),
loading(false),
crashed_status(base::TERMINATION_STATUS_STILL_RUNNING),
off_the_record(false),
@@ -24,6 +25,7 @@
favicon.pixelRefOffset() == data.favicon.pixelRefOffset() &&
network_state == data.network_state &&
title == data.title &&
+ common_prefix_length == data.common_prefix_length &&
loading == data.loading &&
crashed_status == data.crashed_status &&
off_the_record == data.off_the_record &&
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_renderer_data.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698