| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "base/memory/ptr_util.h" | 5 #include "base/memory/ptr_util.h" |
| 6 #include "blimp/client/core/contents/ime_feature.h" | 6 #include "blimp/client/core/contents/ime_feature.h" |
| 7 #include "blimp/client/core/contents/mock_ime_feature_delegate.h" | 7 #include "blimp/client/core/contents/mock_ime_feature_delegate.h" |
| 8 #include "blimp/client/core/contents/mock_navigation_feature_delegate.h" | 8 #include "blimp/client/core/contents/mock_navigation_feature_delegate.h" |
| 9 #include "blimp/client/core/contents/navigation_feature.h" | 9 #include "blimp/client/core/contents/navigation_feature.h" |
| 10 #include "blimp/client/core/contents/tab_control_feature.h" | 10 #include "blimp/client/core/contents/tab_control_feature.h" |
| 11 #include "blimp/client/core/render_widget/mock_render_widget_feature_delegate.h" |
| 12 #include "blimp/client/core/render_widget/render_widget_feature.h" |
| 11 #include "blimp/client/core/session/assignment_source.h" | 13 #include "blimp/client/core/session/assignment_source.h" |
| 12 #include "blimp/client/feature/mock_render_widget_feature_delegate.h" | |
| 13 #include "blimp/client/feature/render_widget_feature.h" | |
| 14 #include "blimp/client/public/session/assignment.h" | 14 #include "blimp/client/public/session/assignment.h" |
| 15 #include "blimp/client/session/test_client_session.h" | 15 #include "blimp/client/session/test_client_session.h" |
| 16 #include "blimp/engine/browser_tests/blimp_browser_test.h" | 16 #include "blimp/engine/browser_tests/blimp_browser_test.h" |
| 17 #include "content/public/test/browser_test.h" | 17 #include "content/public/test/browser_test.h" |
| 18 #include "net/base/ip_address.h" | 18 #include "net/base/ip_address.h" |
| 19 #include "net/base/ip_endpoint.h" | 19 #include "net/base/ip_endpoint.h" |
| 20 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 #include "ui/gfx/geometry/size.h" | 22 #include "ui/gfx/geometry/size.h" |
| 23 #include "url/gurl.h" | 23 #include "url/gurl.h" |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 // assert that the page still loads correctly. | 173 // assert that the page still loads correctly. |
| 174 ExpectPageLoad(); | 174 ExpectPageLoad(); |
| 175 client_session_->GetNavigationFeature()->GoForward(kDummyTabId); | 175 client_session_->GetNavigationFeature()->GoForward(kDummyTabId); |
| 176 NavigateToLocalUrl(kPage2Path); | 176 NavigateToLocalUrl(kPage2Path); |
| 177 RunAndVerify(); | 177 RunAndVerify(); |
| 178 EXPECT_EQ(kPage2Title, last_page_title_); | 178 EXPECT_EQ(kPage2Title, last_page_title_); |
| 179 } | 179 } |
| 180 | 180 |
| 181 } // namespace | 181 } // namespace |
| 182 } // namespace blimp | 182 } // namespace blimp |
| OLD | NEW |