| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_COMMON_GFX_TEXT_ELIDER_H_ | 5 #ifndef APP_GFX_TEXT_ELIDER_H_ |
| 6 #define CHROME_COMMON_GFX_TEXT_ELIDER_H_ | 6 #define APP_GFX_TEXT_ELIDER_H_ |
| 7 | 7 |
| 8 #include <unicode/coll.h> | 8 #include <unicode/coll.h> |
| 9 #include <unicode/uchar.h> | 9 #include <unicode/uchar.h> |
| 10 | 10 |
| 11 #include "app/gfx/chrome_font.h" | 11 #include "app/gfx/font.h" |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/string16.h" | 13 #include "base/string16.h" |
| 14 | 14 |
| 15 class FilePath; | 15 class FilePath; |
| 16 class GURL; | 16 class GURL; |
| 17 | 17 |
| 18 namespace url_parse { | 18 namespace url_parse { |
| 19 struct Parsed; | 19 struct Parsed; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 string16 sort_host_; | 89 string16 sort_host_; |
| 90 | 90 |
| 91 // End of the prefix (spec and separator) in display_url_. | 91 // End of the prefix (spec and separator) in display_url_. |
| 92 size_t prefix_end_; | 92 size_t prefix_end_; |
| 93 | 93 |
| 94 string16 display_url_; | 94 string16 display_url_; |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } // namespace gfx. | 97 } // namespace gfx. |
| 98 | 98 |
| 99 #endif // CHROME_COMMON_GFX_TEXT_ELIDER_H_ | 99 #endif // APP_GFX_TEXT_ELIDER_H_ |
| OLD | NEW |