Tweak more bug ids, triaging layout test failures.
[chromium-blink-merge.git] / base / base64.h
blobd45a8a3d278f8af67aed8dd6c5817c0a127325fa
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
3 // found in the LICENSE file.
5 #ifndef BASE_BASE64_H__
6 #define BASE_BASE64_H__
8 #include <string>
10 namespace base {
12 // Encodes the input string in base64. Returns true if successful and false
13 // otherwise. The output string is only modified if successful.
14 bool Base64Encode(const std::string& input, std::string* output);
16 // Decodes the base64 input string. Returns true if successful and false
17 // otherwise. The output string is only modified if successful.
18 bool Base64Decode(const std::string& input, std::string* output);
20 } // namespace base
22 #endif // BASE_BASE64_H__