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

Side by Side Diff: rlz/lib/rlz_lib.cc

Issue 1445003002: Use std::default_delete as the default deleter for scoped_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: How many trial and errors before this builds on the Windows bots Created 5 years, 1 month 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
« no previous file with comments | « remoting/base/compound_buffer.cc ('k') | sql/mojo/vfs_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 // A library to manage RLZ information for access-points shared 5 // A library to manage RLZ information for access-points shared
6 // across different client applications. 6 // across different client applications.
7 7
8 #include "rlz/lib/rlz_lib.h" 8 #include "rlz/lib/rlz_lib.h"
9 9
10 #include <algorithm>
11
10 #include "base/strings/string_util.h" 12 #include "base/strings/string_util.h"
11 #include "base/strings/stringprintf.h" 13 #include "base/strings/stringprintf.h"
12 #include "rlz/lib/assert.h" 14 #include "rlz/lib/assert.h"
13 #include "rlz/lib/crc32.h" 15 #include "rlz/lib/crc32.h"
14 #include "rlz/lib/financial_ping.h" 16 #include "rlz/lib/financial_ping.h"
15 #include "rlz/lib/lib_values.h" 17 #include "rlz/lib/lib_values.h"
16 #include "rlz/lib/rlz_value_store.h" 18 #include "rlz/lib/rlz_value_store.h"
17 #include "rlz/lib/string_utils.h" 19 #include "rlz/lib/string_utils.h"
18 20
19 namespace { 21 namespace {
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 if (cgi_string.size() >= cgi_size) 648 if (cgi_string.size() >= cgi_size)
647 return false; 649 return false;
648 650
649 strncpy(cgi, cgi_string.c_str(), cgi_size); 651 strncpy(cgi, cgi_string.c_str(), cgi_size);
650 cgi[cgi_size - 1] = 0; 652 cgi[cgi_size - 1] = 0;
651 653
652 return true; 654 return true;
653 } 655 }
654 656
655 } // namespace rlz_lib 657 } // namespace rlz_lib
OLDNEW
« no previous file with comments | « remoting/base/compound_buffer.cc ('k') | sql/mojo/vfs_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698