diff options
author | maf@chromium.org <maf@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-30 00:11:45 +0000 |
---|---|---|
committer | maf@chromium.org <maf@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-30 00:11:45 +0000 |
commit | fcef9e0afacd9dbf4de19651e5da4d9d0ebcae27 (patch) | |
tree | 1876cbeb7b264d320977366ff1e13c5feb5d3047 /base | |
parent | fd132701cc19d57d156b8ff37300a9347117fd3b (diff) | |
download | chromium_src-fcef9e0afacd9dbf4de19651e5da4d9d0ebcae27.zip chromium_src-fcef9e0afacd9dbf4de19651e5da4d9d0ebcae27.tar.gz chromium_src-fcef9e0afacd9dbf4de19651e5da4d9d0ebcae27.tar.bz2 |
Revert 83630 - linux components: expose one last function from base needed by test_shell
Review URL: http://codereview.chromium.org/6883279
TBR=evan@chromium.org
Review URL: http://codereview.chromium.org/6902182
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83636 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/debug/trace_event.h | 2 | ||||
-rw-r--r-- | base/rand_util_c.h | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/base/debug/trace_event.h b/base/debug/trace_event.h index 3b4afc5..c3405fe 100644 --- a/base/debug/trace_event.h +++ b/base/debug/trace_event.h @@ -88,7 +88,7 @@ class ProcessMetrics; namespace debug { -class BASE_API TraceLog { +class TraceLog { public: enum EventType { EVENT_BEGIN, diff --git a/base/rand_util_c.h b/base/rand_util_c.h index 8320ba6..63cf813 100644 --- a/base/rand_util_c.h +++ b/base/rand_util_c.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -6,8 +6,6 @@ #define BASE_RAND_UTIL_C_H_ #pragma once -#include "base/base_api.h" - #ifdef __cplusplus extern "C" { #endif @@ -17,7 +15,7 @@ extern "C" { // Returns an FD for /dev/urandom, possibly pre-opened before sandboxing // was switched on. This is a C function so that Native Client can use it. -BASE_API int GetUrandomFD(void); +int GetUrandomFD(void); #ifdef __cplusplus } |