| Index: src/base/platform/platform.h
|
| diff --git a/src/base/platform/platform.h b/src/base/platform/platform.h
|
| index ab5c13aa08575bd03639fb2cbe0fa1806a30f99b..d3b6c9c1cf3d758276ccc39c50a20b51fc9f9f98 100644
|
| --- a/src/base/platform/platform.h
|
| +++ b/src/base/platform/platform.h
|
| @@ -25,7 +25,6 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "src/base/base-export.h"
|
| #include "src/base/build_config.h"
|
| #include "src/base/compiler-specific.h"
|
| #include "src/base/platform/mutex.h"
|
| @@ -103,7 +102,7 @@
|
| // functions. Add methods here to cope with differences between the
|
| // supported platforms.
|
|
|
| -class V8_BASE_EXPORT OS {
|
| +class OS {
|
| public:
|
| // Initialize the OS class.
|
| // - random_seed: Used for the GetRandomMmapAddress() if non-zero.
|
| @@ -212,7 +211,7 @@
|
| char text[kStackWalkMaxTextLen];
|
| };
|
|
|
| - class V8_BASE_EXPORT MemoryMappedFile {
|
| + class MemoryMappedFile {
|
| public:
|
| virtual ~MemoryMappedFile() {}
|
| virtual void* memory() const = 0;
|
| @@ -287,7 +286,7 @@
|
| // Control of the reserved memory can be assigned to another VirtualMemory
|
| // object by assignment or copy-contructing. This removes the reserved memory
|
| // from the original object.
|
| -class V8_BASE_EXPORT VirtualMemory {
|
| +class VirtualMemory {
|
| public:
|
| // Empty VirtualMemory object, controlling no reserved memory.
|
| VirtualMemory();
|
| @@ -419,7 +418,7 @@
|
| // thread. The Thread object should not be deallocated before the thread has
|
| // terminated.
|
|
|
| -class V8_BASE_EXPORT Thread {
|
| +class Thread {
|
| public:
|
| // Opaque data type for thread-local storage keys.
|
| typedef int32_t LocalStorageKey;
|
|
|