summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-07 07:24:21 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-07 07:24:21 +0000
commitbd7e704434f5bcc171c77d1f12e22362e20cab0f (patch)
tree3b7b117446ff51a62101dafe499c95a693486f15 /webkit
parent049bdd3b82c88ebc5dbfcfa6b80cb8d16b7d2d5e (diff)
downloadchromium_src-bd7e704434f5bcc171c77d1f12e22362e20cab0f.zip
chromium_src-bd7e704434f5bcc171c77d1f12e22362e20cab0f.tar.gz
chromium_src-bd7e704434f5bcc171c77d1f12e22362e20cab0f.tar.bz2
FBTF: Remove unneeded headers from base/ (part 5)
BUG=none TEST=none Review URL: http://codereview.chromium.org/3041049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/plugins/test/plugin_thread_async_call_test.cc1
-rw-r--r--webkit/glue/plugins/test/plugin_thread_async_call_test.h13
2 files changed, 9 insertions, 5 deletions
diff --git a/webkit/glue/plugins/test/plugin_thread_async_call_test.cc b/webkit/glue/plugins/test/plugin_thread_async_call_test.cc
index 2e9f9e9..c01a49e 100644
--- a/webkit/glue/plugins/test/plugin_thread_async_call_test.cc
+++ b/webkit/glue/plugins/test/plugin_thread_async_call_test.cc
@@ -4,6 +4,7 @@
#include "webkit/glue/plugins/test/plugin_thread_async_call_test.h"
+#include "base/at_exit.h"
#include "base/message_loop.h"
#include "base/thread.h"
#include "webkit/glue/plugins/test/plugin_client.h"
diff --git a/webkit/glue/plugins/test/plugin_thread_async_call_test.h b/webkit/glue/plugins/test/plugin_thread_async_call_test.h
index 020e5e1..94d17c4 100644
--- a/webkit/glue/plugins/test/plugin_thread_async_call_test.h
+++ b/webkit/glue/plugins/test/plugin_thread_async_call_test.h
@@ -1,16 +1,19 @@
-// Copyright (c) 2006-2009 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.
-#ifndef WEBKIT_GLUE_PLUGINS_TEST_PLUGIN_THREAD_ASYNC_CALL_TEST_H
-#define WEBKIT_GLUE_PLUGINS_TEST_PLUGIN_THREAD_ASYNC_CALL_TEST_H
+#ifndef WEBKIT_GLUE_PLUGINS_TEST_PLUGIN_THREAD_ASYNC_CALL_TEST_H_
+#define WEBKIT_GLUE_PLUGINS_TEST_PLUGIN_THREAD_ASYNC_CALL_TEST_H_
#include <vector>
-#include "base/at_exit.h"
#include "base/scoped_ptr.h"
#include "webkit/glue/plugins/test/plugin_test.h"
+namespace base {
+class AtExitManager;
+}
+
namespace NPAPIClient {
// This class tests scheduling and unscheduling of async callbacks using
@@ -35,4 +38,4 @@ class PluginThreadAsyncCallTest : public PluginTest {
} // namespace NPAPIClient
-#endif // WEBKIT_GLUE_PLUGINS_TEST_PLUGIN_THREAD_ASYNC_CALL_TEST_H
+#endif // WEBKIT_GLUE_PLUGINS_TEST_PLUGIN_THREAD_ASYNC_CALL_TEST_H_