| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <memory> | 5 #include <memory> |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
| 9 #include "services/navigation/public/interfaces/view.mojom.h" | 9 #include "services/navigation/public/interfaces/view.mojom.h" |
| 10 #include "services/shell/public/cpp/shell_client.h" | 10 #include "services/shell/public/cpp/shell_client.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 loop_->Quit(); | 42 loop_->Quit(); |
| 43 } | 43 } |
| 44 void NavigationStateChanged(const GURL& url, | 44 void NavigationStateChanged(const GURL& url, |
| 45 const mojo::String& title, | 45 const mojo::String& title, |
| 46 bool can_go_back, | 46 bool can_go_back, |
| 47 bool can_go_forward) override {} | 47 bool can_go_forward) override {} |
| 48 void LoadProgressChanged(double progress) override {} | 48 void LoadProgressChanged(double progress) override {} |
| 49 void ViewCreated(mojom::ViewPtr, | 49 void ViewCreated(mojom::ViewPtr, |
| 50 mojom::ViewClientRequest, | 50 mojom::ViewClientRequest, |
| 51 bool, | 51 bool, |
| 52 mojo::RectPtr, | 52 const gfx::Rect&, |
| 53 bool) override {} | 53 bool) override {} |
| 54 void Close() override {} | 54 void Close() override {} |
| 55 | 55 |
| 56 int load_count_ = 0; | 56 int load_count_ = 0; |
| 57 mojo::Binding<mojom::ViewClient> binding_; | 57 mojo::Binding<mojom::ViewClient> binding_; |
| 58 base::RunLoop* loop_ = nullptr; | 58 base::RunLoop* loop_ = nullptr; |
| 59 std::unique_ptr<shell::Connection> window_manager_connection_; | 59 std::unique_ptr<shell::Connection> window_manager_connection_; |
| 60 | 60 |
| 61 DISALLOW_COPY_AND_ASSIGN(NavigationTest); | 61 DISALLOW_COPY_AND_ASSIGN(NavigationTest); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 TEST_F(NavigationTest, Navigate) { | 64 TEST_F(NavigationTest, Navigate) { |
| 65 mojom::ViewFactoryPtr view_factory; | 65 mojom::ViewFactoryPtr view_factory; |
| 66 connector()->ConnectToInterface("exe:navigation", &view_factory); | 66 connector()->ConnectToInterface("exe:navigation", &view_factory); |
| 67 | 67 |
| 68 mojom::ViewPtr view; | 68 mojom::ViewPtr view; |
| 69 view_factory->CreateView(GetViewClient(), GetProxy(&view)); | 69 view_factory->CreateView(GetViewClient(), GetProxy(&view)); |
| 70 view->NavigateTo(GURL("about:blank")); | 70 view->NavigateTo(GURL("about:blank")); |
| 71 | 71 |
| 72 base::RunLoop loop; | 72 base::RunLoop loop; |
| 73 QuitOnLoadingStateChange(&loop); | 73 QuitOnLoadingStateChange(&loop); |
| 74 loop.Run(); | 74 loop.Run(); |
| 75 } | 75 } |
| 76 | 76 |
| 77 } // namespace navigation | 77 } // namespace navigation |
| OLD | NEW |