summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-01 18:30:12 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-01 18:30:12 +0000
commit72e28448cf1d3d72273c405c5b305e83798877e7 (patch)
treefb358f010ec0d029df38372697a36d8464dc77b3
parent5710bf791c30622603340723d5a33dc4aa237d20 (diff)
downloadchromium_src-72e28448cf1d3d72273c405c5b305e83798877e7.zip
chromium_src-72e28448cf1d3d72273c405c5b305e83798877e7.tar.gz
chromium_src-72e28448cf1d3d72273c405c5b305e83798877e7.tar.bz2
Remove unused common_api.h
R=ananta@chromium.org Review URL: https://chromiumcodereview.appspot.com/10264003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134730 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/chrome_common.gypi1
-rw-r--r--chrome/common/common_api.h26
2 files changed, 0 insertions, 27 deletions
diff --git a/chrome/chrome_common.gypi b/chrome/chrome_common.gypi
index 7e78462..ba60bf0 100644
--- a/chrome/chrome_common.gypi
+++ b/chrome/chrome_common.gypi
@@ -93,7 +93,6 @@
'common/cloud_print/cloud_print_helpers.h',
'common/cloud_print/cloud_print_proxy_info.cc',
'common/cloud_print/cloud_print_proxy_info.h',
- 'common/common_api.h',
'common/common_message_generator.cc',
'common/common_message_generator.h',
'common/common_param_traits.cc',
diff --git a/chrome/common/common_api.h b/chrome/common/common_api.h
deleted file mode 100644
index 4d70ca7..0000000
--- a/chrome/common/common_api.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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.
-
-#ifndef CHROME_COMMON_COMMON_API_H_
-#define CHROME_COMMON_COMMON_API_H_
-#pragma once
-
-// Defines COMMON_API so that funtionality implemented by the common module can
-// be exported to consumers, and COMMON_TEST that allows unit tests to access
-// features not intended to be used directly by real consumers.
-
-#if defined(WIN32) && defined(COMMON_DLL)
-#if defined(COMMON_IMPLEMENTATION)
-#define COMMON_API __declspec(dllexport)
-#define COMMON_TEST __declspec(dllexport)
-#else
-#define COMMON_API __declspec(dllimport)
-#define COMMON_TEST __declspec(dllimport)
-#endif // defined(COMMON_IMPLEMENTATION)
-#else
-#define COMMON_API
-#define COMMON_TEST
-#endif
-
-#endif // CHROME_COMMON_COMMON_API_H_