Index: webkit/tools/test_shell/test_shell_gtk.cc |
diff --git a/webkit/tools/test_shell/test_shell_gtk.cc b/webkit/tools/test_shell/test_shell_gtk.cc |
index 4a04610cd841b201f57c8898c9e08b025d1f95ac..7c9b0cc027d1c3ca5452e1fd4d788a7d9eb67e41 100644 |
--- a/webkit/tools/test_shell/test_shell_gtk.cc |
+++ b/webkit/tools/test_shell/test_shell_gtk.cc |
@@ -626,7 +626,7 @@ void TestShell::ShowStartupDebuggingDialog() { |
} |
// static |
-base::StringPiece TestShell::NetResourceProvider(int key) { |
+base::StringPiece TestShell::ResourceProvider(int key) { |
base::StringPiece res; |
g_resource_data_pack->GetStringPiece(key, &res); |
return res; |
@@ -655,7 +655,7 @@ base::StringPiece GetDataResource(int resource_id) { |
resource_id = IDR_TEXTAREA_RESIZER_TESTSHELL; |
break; |
} |
- return TestShell::NetResourceProvider(resource_id); |
+ return TestShell::ResourceProvider(resource_id); |
} |
} // namespace webkit_glue |