| Index: webkit/tools/test_shell/test_shell_webkit_init.h
|
| ===================================================================
|
| --- webkit/tools/test_shell/test_shell_webkit_init.h (revision 65789)
|
| +++ webkit/tools/test_shell/test_shell_webkit_init.h (working copy)
|
| @@ -35,7 +35,7 @@
|
| ~TestShellWebKitInit();
|
|
|
| virtual WebKit::WebMimeRegistry* mimeRegistry() {
|
| - return &mime_registry_;
|
| + return mime_registry_.get();
|
| }
|
|
|
| WebKit::WebClipboard* clipboard();
|
| @@ -158,7 +158,7 @@
|
| }
|
|
|
| private:
|
| - TestShellWebMimeRegistryImpl mime_registry_;
|
| + scoped_ptr<webkit_glue::SimpleWebMimeRegistryImpl> mime_registry_;
|
| MockWebClipboardImpl mock_clipboard_;
|
| webkit_glue::WebClipboardImpl real_clipboard_;
|
| webkit_glue::WebFileUtilitiesImpl file_utilities_;
|
|
|