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

Side by Side Diff: base/base64.h

Issue 7397021: Re-land r93365 - add RefCountedString (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 9 years, 5 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
« no previous file with comments | « base/base.gyp ('k') | base/base64.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef BASE_BASE64_H__ 5 #ifndef BASE_BASE64_H__
6 #define BASE_BASE64_H__ 6 #define BASE_BASE64_H__
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/base_api.h" 11 #include "base/base_api.h"
12 #include "base/string_piece.h"
12 13
13 namespace base { 14 namespace base {
14 15
15 // Encodes the input string in base64. Returns true if successful and false 16 // Encodes the input string in base64. Returns true if successful and false
16 // otherwise. The output string is only modified if successful. 17 // otherwise. The output string is only modified if successful.
17 BASE_API bool Base64Encode(const std::string& input, std::string* output); 18 BASE_API bool Base64Encode(const StringPiece& input, std::string* output);
18 19
19 // Decodes the base64 input string. Returns true if successful and false 20 // Decodes the base64 input string. Returns true if successful and false
20 // otherwise. The output string is only modified if successful. 21 // otherwise. The output string is only modified if successful.
21 BASE_API bool Base64Decode(const std::string& input, std::string* output); 22 BASE_API bool Base64Decode(const StringPiece& input, std::string* output);
22 23
23 } // namespace base 24 } // namespace base
24 25
25 #endif // BASE_BASE64_H__ 26 #endif // BASE_BASE64_H__
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/base64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698