summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/test_shell_mac.mm
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-20 21:22:37 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-20 21:22:37 +0000
commit559fd2cc6db35d5dd473849836e5b31396936a73 (patch)
treee0cde62d5b6f120f64e1861299f8ae857278190c /webkit/tools/test_shell/test_shell_mac.mm
parent2306bbd5843b30f4e78a9342b60d580dce083794 (diff)
downloadchromium_src-559fd2cc6db35d5dd473849836e5b31396936a73.zip
chromium_src-559fd2cc6db35d5dd473849836e5b31396936a73.tar.gz
chromium_src-559fd2cc6db35d5dd473849836e5b31396936a73.tar.bz2
generate test_shell.pak and hook up loading net resources from
test_shell.pak. Move the net resource loading into the platform specific files (still a stub on osx). Review URL: http://codereview.chromium.org/18186 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8321 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.mm8
1 files changed, 8 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/test_shell_mac.mm b/webkit/tools/test_shell/test_shell_mac.mm
index 554f3c2..40a6fd2 100644
--- a/webkit/tools/test_shell/test_shell_mac.mm
+++ b/webkit/tools/test_shell/test_shell_mac.mm
@@ -15,11 +15,13 @@
#include "base/file_util.h"
#include "base/gfx/size.h"
#include "base/icu_util.h"
+#include "base/logging.h"
#include "base/mac_util.h"
#include "base/memory_debug.h"
#include "base/message_loop.h"
#include "base/path_service.h"
#include "base/stats_table.h"
+#include "base/string_piece.h"
#include "base/string_util.h"
#include "net/base/mime_util.h"
#include "skia/ext/bitmap_platform_device.h"
@@ -859,6 +861,12 @@ void TestShell::ShowStartupDebuggingDialog() {
// TODO(port): Show a modal dialog here with an attach to me message.
}
+StringPiece TestShell::NetResourceProvider(int key) {
+ // TODO(port): Return the requested resource.
+ NOTIMPLEMENTED();
+ return StringPiece();
+}
+
//-----------------------------------------------------------------------------
namespace webkit_glue {