Base: First pass at having base.dll: definition of
BASE_API and a few files that use it.

BUG=76996
TEST=none
Review URL: http://codereview.chromium.org/6725001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79056 0039d316-1c4b-4281-b951-d872f2087c98


CrOS-Libchrome-Original-Commit: f53121d2c69801353feb2531446a1b1b93e576d4
diff --git a/base/base64.h b/base/base64.h
index 39cebfb..294fb83 100644
--- a/base/base64.h
+++ b/base/base64.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
@@ -8,15 +8,17 @@
 
 #include <string>
 
+#include "base/base_api.h"
+
 namespace base {
 
 // Encodes the input string in base64.  Returns true if successful and false
 // otherwise.  The output string is only modified if successful.
-bool Base64Encode(const std::string& input, std::string* output);
+BASE_API bool Base64Encode(const std::string& input, std::string* output);
 
 // Decodes the base64 input string.  Returns true if successful and false
 // otherwise.  The output string is only modified if successful.
-bool Base64Decode(const std::string& input, std::string* output);
+BASE_API bool Base64Decode(const std::string& input, std::string* output);
 
 }  // namespace base