diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-27 21:20:44 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-27 21:20:44 +0000 |
commit | d5286071e418c339c0b76e55abdf209e95c94235 (patch) | |
tree | d0c47c4aaf8a0d44781038053734f9585ec9134b /webkit/tools/test_shell/test_shell_mac.mm | |
parent | b3f03bd9caaaf4b823d764c7c5a8ffcafcfdb7c1 (diff) | |
download | chromium_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.mm | 14 |
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); } |