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

Side by Side Diff: base/base64.h

Issue 6725001: Base: First pass at having base.dll: definition of (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
« no previous file with comments | « base/base.gypi ('k') | base/base_api.h » ('j') | base/base_api.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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"
12
11 namespace base { 13 namespace base {
12 14
13 // Encodes the input string in base64. Returns true if successful and false 15 // Encodes the input string in base64. Returns true if successful and false
14 // otherwise. The output string is only modified if successful. 16 // otherwise. The output string is only modified if successful.
15 bool Base64Encode(const std::string& input, std::string* output); 17 BASE_API bool Base64Encode(const std::string& input, std::string* output);
16 18
17 // Decodes the base64 input string. Returns true if successful and false 19 // Decodes the base64 input string. Returns true if successful and false
18 // otherwise. The output string is only modified if successful. 20 // otherwise. The output string is only modified if successful.
19 bool Base64Decode(const std::string& input, std::string* output); 21 BASE_API bool Base64Decode(const std::string& input, std::string* output);
20 22
21 } // namespace base 23 } // namespace base
22 24
23 #endif // BASE_BASE64_H__ 25 #endif // BASE_BASE64_H__
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | base/base_api.h » ('j') | base/base_api.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698