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

Side by Side Diff: base/strings/string_compress.h

Issue 12529024: Fix feedback log collection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef BASE_STRINGS_STRING_COMPRESS_H_
6 #define BASE_STRINGS_STRING_COMPRESS_H_
7
8 #include <string>
9
10 #include "base/base_export.h"
11
12 namespace base {
13
14 // Compresses the text in |input| using bzip2, store the result in |output|.
15 // Note, this is currently tuned for data under 100k.
16 BASE_EXPORT bool Bzip2Compress(const std::string& input, std::string* output);
17
18 } // namespace base
19
20 #endif // BASE_STRINGS_STRING_COMPRESS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698