summaryrefslogtreecommitdiffstats
path: root/webkit/support/webkit_support.h
diff options
context:
space:
mode:
authortkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-10 02:03:34 +0000
committertkent@chromium.org <tkent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-10 02:03:34 +0000
commit3ccd918d4319018bc15ded7f1e68bb42e5c426a0 (patch)
tree8fd0248c4d78990b4e0a7e85d182428ceaa57330 /webkit/support/webkit_support.h
parent0b2149e1cd7aa309c15db0278504e162f4fe02ae (diff)
downloadchromium_src-3ccd918d4319018bc15ded7f1e68bb42e5c426a0.zip
chromium_src-3ccd918d4319018bc15ded7f1e68bb42e5c426a0.tar.gz
chromium_src-3ccd918d4319018bc15ded7f1e68bb42e5c426a0.tar.bz2
webkit_support:
- Introduce webkit_support_gfx.h, which has wrappers of gfx::PNGCodec It is used by ImageDiff.cpp and TestShell.cpp - Include base/string16.h in webkit_support.h This makes moving base/string16.h in Chromium tree easier. - Remove unused functions. BUG=none TEST=none Review URL: http://codereview.chromium.org/3336013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59033 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/support/webkit_support.h')
-rw-r--r--webkit/support/webkit_support.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/webkit/support/webkit_support.h b/webkit/support/webkit_support.h
index 6c17de2..c8b7978 100644
--- a/webkit/support/webkit_support.h
+++ b/webkit/support/webkit_support.h
@@ -6,12 +6,13 @@
#define WEBKIT_SUPPORT_WEBIT_SUPPORT_H_
#include <string>
+#include <vector>
#include "app/keyboard_codes.h"
#include "base/basictypes.h"
+#include "base/string16.h"
#include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgentClient.h"
-class Task;
class WebURLLoaderMockFactory;
namespace WebKit {
class WebApplicationCacheHost;
@@ -50,10 +51,6 @@ namespace webkit_support {
// initialized (as it is already done by the TestSuite).
void SetUpTestEnvironment();
void SetUpTestEnvironmentForUnitTests();
-// TODO(jcivelli): the method below is deprecated and should be removed when
-// DumpRenderTree has been modified to use the version with no
-// parameter.
-void SetUpTestEnvironment(bool unit_test_mode);
void TearDownTestEnvironment();
// Returns a pointer to a WebKitClient implementation for DumpRenderTree.
@@ -103,8 +100,6 @@ void RunAllPendingMessages();
void DispatchMessageLoop();
WebKit::WebDevToolsAgentClient::WebKitClientMessageLoop*
CreateDevToolsMessageLoop();
-void PostTaskFromHere(Task* task); // TODO(tkent): Eliminate Task.
-void PostDelayedTaskFromHere(Task* task, int64 delay_ms); // ditto.
void PostDelayedTask(void (*func)(void*), void* context, int64 delay_ms);
// -------- File path and PathService