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

Unified Diff: third_party/libphonenumber/patches/version277a.patch

Issue 8736001: Pull the phone library directly. Delete old version. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/libphonenumber/patches/version277a.patch
===================================================================
--- third_party/libphonenumber/patches/version277a.patch (revision 111991)
+++ third_party/libphonenumber/patches/version277a.patch (working copy)
@@ -1,21 +0,0 @@
-diff -Naur src-orig/default_logger.h src/default_logger.h
---- src-orig/default_logger.h 2011-07-02 16:27:58.000000000 -0700
-+++ src/default_logger.h 2011-07-02 16:28:29.000000000 -0700
-@@ -17,6 +17,8 @@
- #ifndef I18N_PHONENUMBERS_DEFAULT_LOGGER_H_
- #define I18N_PHONENUMBERS_DEFAULT_LOGGER_H_
-
-+#include <stdio.h>
-+
- #include <string>
-
- #include "logger.h"
-@@ -45,7 +47,7 @@
- struct ConvertToString<int> {
- static inline string DoWork(const int& n) {
- char buffer[16];
-- std::snprintf(buffer, sizeof(buffer), "%d", n);
-+ snprintf(buffer, sizeof(buffer), "%d", n);
- return string(buffer);
- }
- };
« no previous file with comments | « third_party/libphonenumber/libphonenumber.gyp ('k') | third_party/libphonenumber/resources/PhoneNumberMetaData.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698