Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(238)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: url/url_canon_stdstring.cc
Issue
14016005
:
url: Changes to make it build standalone. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set:
Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
url/googleurl.gyp
url/gurl.h
url/gurl.cc
url/gurl_unittest.cc
url/url.gyp
url/url_canon.h
url/url_canon_etc.cc
url/url_canon_filesystemurl.cc
url/url_canon_fileurl.cc
url/url_canon_host.cc
url/url_canon_icu.h
url/url_canon_icu.cc
url/url_canon_internal.h
url/url_canon_internal.cc
url/url_canon_internal_file.h
url/url_canon_ip.h
url/url_canon_ip.cc
url/url_canon_mailtourl.cc
url/url_canon_path.cc
url/url_canon_pathurl.cc
url/url_canon_query.cc
url/url_canon_relative.cc
url/url_canon_stdstring.h
url/url_canon_stdstring.cc
url/url_canon_stdurl.cc
url/url_canon_unittest.cc
url/url_common.h
url/url_file.h
url/url_parse.h
url/url_parse.cc
url/url_parse_file.cc
url/url_parse_internal.h
url/url_parse_unittest.cc
url/url_test_utils.h
url/url_util.h
url/url_util.cc
url/url_util_internal.h
url/url_util_unittest.cc
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« url/url_canon_internal.cc
('K') |
« url/url_canon_stdstring.h
('k') |
url/url_canon_stdurl.cc »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright 2013 The Chromium Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#include "url/url_canon_stdstring.h"
6
7
namespace url_canon {
8
9
void StdStringCanonOutput::Resize(int sz) {
10
str_->resize(sz);
11
buffer_ = str_->empty() ? NULL : &(*str_)[0];
12
buffer_len_ = sz;
13
}
14
15
} // namespace url_canon
OLD
NEW
« url/url_canon_internal.cc
('K') |
« url/url_canon_stdstring.h
('k') |
url/url_canon_stdurl.cc »
('j') |
no next file with comments »
Issue 14016005: url: Changes to make it build standalone. (Closed)
Created 7 years, 8 months ago by tfarina
Modified 7 years, 8 months ago
Reviewers: brettw
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 2
This is Rietveld
408576698