| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |