| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <limits> | 5 #include <limits> |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 DISALLOW_COPY_AND_ASSIGN(TestWebUIControllerFactory); | 173 DISALLOW_COPY_AND_ASSIGN(TestWebUIControllerFactory); |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 class WebUIMojoTest : public ContentBrowserTest { | 176 class WebUIMojoTest : public ContentBrowserTest { |
| 177 public: | 177 public: |
| 178 WebUIMojoTest() { | 178 WebUIMojoTest() { |
| 179 WebUIControllerFactory::RegisterFactory(&factory_); | 179 WebUIControllerFactory::RegisterFactory(&factory_); |
| 180 } | 180 } |
| 181 | 181 |
| 182 virtual ~WebUIMojoTest() { | 182 ~WebUIMojoTest() override { |
| 183 WebUIControllerFactory::UnregisterFactoryForTesting(&factory_); | 183 WebUIControllerFactory::UnregisterFactoryForTesting(&factory_); |
| 184 } | 184 } |
| 185 | 185 |
| 186 TestWebUIControllerFactory* factory() { return &factory_; } | 186 TestWebUIControllerFactory* factory() { return &factory_; } |
| 187 | 187 |
| 188 private: | 188 private: |
| 189 TestWebUIControllerFactory factory_; | 189 TestWebUIControllerFactory factory_; |
| 190 | 190 |
| 191 DISALLOW_COPY_AND_ASSIGN(WebUIMojoTest); | 191 DISALLOW_COPY_AND_ASSIGN(WebUIMojoTest); |
| 192 }; | 192 }; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 NavigateToURL(other_shell, test_url); | 225 NavigateToURL(other_shell, test_url); |
| 226 // RunLoop is quit when message received from page. | 226 // RunLoop is quit when message received from page. |
| 227 other_run_loop.Run(); | 227 other_run_loop.Run(); |
| 228 EXPECT_TRUE(got_message); | 228 EXPECT_TRUE(got_message); |
| 229 EXPECT_EQ(shell()->web_contents()->GetRenderProcessHost(), | 229 EXPECT_EQ(shell()->web_contents()->GetRenderProcessHost(), |
| 230 other_shell->web_contents()->GetRenderProcessHost()); | 230 other_shell->web_contents()->GetRenderProcessHost()); |
| 231 } | 231 } |
| 232 | 232 |
| 233 } // namespace | 233 } // namespace |
| 234 } // namespace content | 234 } // namespace content |
| OLD | NEW |