| Index: content/renderer/pepper/pepper_file_chooser_host_unittest.cc
|
| ===================================================================
|
| --- content/renderer/pepper/pepper_file_chooser_host_unittest.cc (revision 192091)
|
| +++ content/renderer/pepper/pepper_file_chooser_host_unittest.cc (working copy)
|
| @@ -31,11 +31,9 @@
|
| class PepperFileChooserHostTest : public RenderViewTest {
|
| public:
|
| PepperFileChooserHostTest()
|
| - : pp_instance_(123456),
|
| - old_content_client_(NULL) {}
|
| + : pp_instance_(123456) {}
|
|
|
| virtual void SetUp() {
|
| - old_content_client_ = GetContentClient();
|
| SetContentClient(&client_);
|
| RenderViewTest::SetUp();
|
|
|
| @@ -45,7 +43,6 @@
|
| globals_.GetResourceTracker()->DidDeleteInstance(pp_instance_);
|
|
|
| RenderViewTest::TearDown();
|
| - SetContentClient(old_content_client_);
|
| }
|
|
|
| PP_Instance pp_instance() const { return pp_instance_; }
|
| @@ -55,9 +52,6 @@
|
|
|
| ppapi::TestGlobals globals_;
|
| TestContentClient client_;
|
| -
|
| - // Original value for the content client.
|
| - ContentClient* old_content_client_;
|
| };
|
|
|
| // For testing to convert our hardcoded file paths to 8-bit.
|
|
|