summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2014-09-10 22:55:16 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-11 06:01:35 +0000
commitf5aa19be61458826c1465a992f6513fa97883b58 (patch)
treec32f9bf013b7235215bcc41056006522b47a14a1 /webkit
parent1338de35a7d546038523bff1b9be0d882232d621 (diff)
downloadchromium_src-f5aa19be61458826c1465a992f6513fa97883b58.zip
chromium_src-f5aa19be61458826c1465a992f6513fa97883b58.tar.gz
chromium_src-f5aa19be61458826c1465a992f6513fa97883b58.tar.bz2
webkit: Cleanup: Delete webkit_common_export.h
After recent refactorings moving almost the remaining pieces into storage/, looks like nobody is including this header. So we can remove it now. BUG=338338 TEST=None TBR=jamesr@chromium.org Review URL: https://codereview.chromium.org/555323003 Cr-Commit-Position: refs/heads/master@{#294333}
Diffstat (limited to 'webkit')
-rw-r--r--webkit/common/webkit_common_export.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/webkit/common/webkit_common_export.h b/webkit/common/webkit_common_export.h
deleted file mode 100644
index 363937bd..0000000
--- a/webkit/common/webkit_common_export.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2013 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 WEBKIT_COMMON_WEBKIT_COMMON_EXPORT_H_
-#define WEBKIT_COMMON_WEBKIT_COMMON_EXPORT_H_
-
-#if defined(COMPONENT_BUILD)
-#if defined(WIN32)
-
-#if defined(WEBKIT_COMMON_IMPLEMENTATION)
-#define WEBKIT_COMMON_EXPORT __declspec(dllexport)
-#else
-#define WEBKIT_COMMON_EXPORT __declspec(dllimport)
-#endif // defined(WEBKIT_COMMON_IMPLEMENTATION)
-
-#else // defined(WIN32)
-#if defined(WEBKIT_COMMON_IMPLEMENTATION)
-#define WEBKIT_COMMON_EXPORT __attribute__((visibility("default")))
-#else
-#define WEBKIT_COMMON_EXPORT
-#endif
-#endif
-
-#else // defined(COMPONENT_BUILD)
-#define WEBKIT_COMMON_EXPORT
-#endif
-
-#endif // WEBKIT_COMMON_WEBKIT_COMMON_EXPORT_H_