summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/test_shell_mac.mm
diff options
context:
space:
mode:
authorthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-27 21:20:44 +0000
committerthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-27 21:20:44 +0000
commitd5286071e418c339c0b76e55abdf209e95c94235 (patch)
treed0c47c4aaf8a0d44781038053734f9585ec9134b /webkit/tools/test_shell/test_shell_mac.mm
parentb3f03bd9caaaf4b823d764c7c5a8ffcafcfdb7c1 (diff)
downloadchromium_src-d5286071e418c339c0b76e55abdf209e95c94235.zip
chromium_src-d5286071e418c339c0b76e55abdf209e95c94235.tar.gz
chromium_src-d5286071e418c339c0b76e55abdf209e95c94235.tar.bz2
Small test shell work:
- remove some unused functions - add the gtk and win code to the project so it's easier to continue working on cleanup. Review URL: http://codereview.chromium.org/19031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8752 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_shell_mac.mm')
-rw-r--r--webkit/tools/test_shell/test_shell_mac.mm14
1 files changed, 0 insertions, 14 deletions
diff --git a/webkit/tools/test_shell/test_shell_mac.mm b/webkit/tools/test_shell/test_shell_mac.mm
index 0d004a5..a288abc 100644
--- a/webkit/tools/test_shell/test_shell_mac.mm
+++ b/webkit/tools/test_shell/test_shell_mac.mm
@@ -681,20 +681,6 @@ std::string GetDataResource(int resource_id) {
return std::string();
}
-NSCursor* LoadCursor(int cursor_id) {
- // TODO(port): add some more options here
- return [NSCursor arrowCursor];
-}
-
-bool GetInspectorHTMLPath(std::string* path) {
- NSString* resource_path = [[NSBundle mainBundle] resourcePath];
- if (!resource_path)
- return false;
- *path = [resource_path UTF8String];
- *path += "/Inspector/inspector.htm";
- return true;
-}
-
bool GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) {
return false; // NPAPI::PluginList::Singleton()->GetPlugins(refresh, plugins);
}