| Index: webkit/support/platform_support_linux.cc
|
| diff --git a/webkit/support/platform_support_linux.cc b/webkit/support/platform_support_linux.cc
|
| index ab0f1c0223e36b5ba98e79317676141ddbeca4d5..1ff0490c4812c35f2a1469f3bbeed3b5fa63d985 100644
|
| --- a/webkit/support/platform_support_linux.cc
|
| +++ b/webkit/support/platform_support_linux.cc
|
| @@ -12,6 +12,7 @@
|
| #include "base/string_piece.h"
|
| #include "grit/webkit_resources.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| +#include "webkit/support/test_webkit_platform_support.h"
|
|
|
| namespace webkit_support {
|
|
|
| @@ -40,13 +41,11 @@ void AfterShutdown() {
|
|
|
| } // namespace webkit_support
|
|
|
| -namespace webkit_glue {
|
| -
|
| -string16 GetLocalizedString(int message_id) {
|
| +string16 TestWebKitPlatformSupport::GetLocalizedString(int message_id) {
|
| return ResourceBundle::GetSharedInstance().GetLocalizedString(message_id);
|
| }
|
|
|
| -base::StringPiece GetDataResource(int resource_id) {
|
| +base::StringPiece TestWebKitPlatformSupport::GetDataResource(int resource_id) {
|
| FilePath resources_path;
|
| PathService::Get(base::DIR_EXE, &resources_path);
|
| resources_path = resources_path.Append("DumpRenderTree_resources");
|
| @@ -75,5 +74,3 @@ base::StringPiece GetDataResource(int resource_id) {
|
|
|
| return ResourceBundle::GetSharedInstance().GetRawDataResource(resource_id);
|
| }
|
| -
|
| -} // namespace webkit_glue
|
|
|