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

Side by Side Diff: base/base64.h

Issue 7461141: Rename BASE_API to BASE_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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') | 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_export.h"
12 #include "base/string_piece.h" 12 #include "base/string_piece.h"
13 13
14 namespace base { 14 namespace base {
15 15
16 // 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
17 // otherwise. The output string is only modified if successful. 17 // otherwise. The output string is only modified if successful.
18 BASE_API bool Base64Encode(const StringPiece& input, std::string* output); 18 BASE_EXPORT bool Base64Encode(const StringPiece& input, std::string* output);
19 19
20 // Decodes the base64 input string. Returns true if successful and false 20 // Decodes the base64 input string. Returns true if successful and false
21 // otherwise. The output string is only modified if successful. 21 // otherwise. The output string is only modified if successful.
22 BASE_API bool Base64Decode(const StringPiece& input, std::string* output); 22 BASE_EXPORT bool Base64Decode(const StringPiece& input, std::string* output);
23 23
24 } // namespace base 24 } // namespace base
25 25
26 #endif // BASE_BASE64_H__ 26 #endif // BASE_BASE64_H__
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | base/base_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698