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

Side by Side Diff: printing/backend/print_backend.cc

Issue 10963050: Set max title size to 50 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
« no previous file with comments | « no previous file | printing/backend/print_backend_unittest.cc » ('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) 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 #include "printing/backend/print_backend.h" 5 #include "printing/backend/print_backend.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "third_party/icu/public/common/unicode/uchar.h" 9 #include "third_party/icu/public/common/unicode/uchar.h"
10 #include "ui/base/text/text_elider.h" 10 #include "ui/base/text/text_elider.h"
11 11
12 namespace { 12 namespace {
13 13
14 const wchar_t kDefaultDocumentTitle[] = L"Untitled Document"; 14 const wchar_t kDefaultDocumentTitle[] = L"Untitled Document";
15 const int kMaxDocumentTitleLength = 25; 15 const int kMaxDocumentTitleLength = 50;
16 16
17 } // namespace 17 } // namespace
18 18
19 namespace printing { 19 namespace printing {
20 20
21 PrinterBasicInfo::PrinterBasicInfo() 21 PrinterBasicInfo::PrinterBasicInfo()
22 : printer_status(0), 22 : printer_status(0),
23 is_default(false) {} 23 is_default(false) {}
24 24
25 PrinterBasicInfo::~PrinterBasicInfo() {} 25 PrinterBasicInfo::~PrinterBasicInfo() {}
(...skipping 16 matching lines...) Expand all
42 string16 no_controls(title); 42 string16 no_controls(title);
43 no_controls.erase( 43 no_controls.erase(
44 std::remove_if(no_controls.begin(), no_controls.end(), &u_iscntrl), 44 std::remove_if(no_controls.begin(), no_controls.end(), &u_iscntrl),
45 no_controls.end()); 45 no_controls.end());
46 string16 result; 46 string16 result;
47 ui::ElideString(no_controls, kMaxDocumentTitleLength, &result); 47 ui::ElideString(no_controls, kMaxDocumentTitleLength, &result);
48 return result; 48 return result;
49 } 49 }
50 50
51 } // namespace printing 51 } // namespace printing
OLDNEW
« no previous file with comments | « no previous file | printing/backend/print_backend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698