summaryrefslogtreecommitdiffstats
path: root/base/native_library.h
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-18 17:42:27 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-18 17:42:27 +0000
commit5a8d4ce29f346d9fe2435d17c375e2ddb6fe6123 (patch)
tree99c554aab7548aac08323e96b97b261c2fe6e714 /base/native_library.h
parentb8b2dbebdf0d28db0f162eadb2c3838ac7b8a088 (diff)
downloadchromium_src-5a8d4ce29f346d9fe2435d17c375e2ddb6fe6123.zip
chromium_src-5a8d4ce29f346d9fe2435d17c375e2ddb6fe6123.tar.gz
chromium_src-5a8d4ce29f346d9fe2435d17c375e2ddb6fe6123.tar.bz2
Move DumpProcessWithoutCrash to base, so we can use it from net and content
BUG=none R=mark@chromium.org TBR=wez@chromium.org Review URL: https://codereview.chromium.org/99523009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241589 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/native_library.h')
-rw-r--r--base/native_library.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/base/native_library.h b/base/native_library.h
index 891f35b..9353b1f 100644
--- a/base/native_library.h
+++ b/base/native_library.h
@@ -9,6 +9,7 @@
// a loadable module.
#include "base/base_export.h"
+#include "base/compiler_specific.h"
#include "build/build_config.h"
#if defined(OS_WIN)
@@ -19,13 +20,6 @@
#include "base/strings/string16.h"
-// Macro useful for writing cross-platform function pointers.
-#if defined(OS_WIN) && !defined(CDECL)
-#define CDECL __cdecl
-#else
-#define CDECL
-#endif
-
namespace base {
class FilePath;