| 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 "components/previews/previews_io_data.h" | 5 #include "components/previews/core/previews_io_data.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
| 12 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
| 13 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
| 14 #include "components/previews/previews_ui_service.h" | 14 #include "components/previews/core/previews_ui_service.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 namespace previews { | 17 namespace previews { |
| 18 | 18 |
| 19 namespace { | 19 namespace { |
| 20 | 20 |
| 21 class TestPreviewsIOData : public PreviewsIOData { | 21 class TestPreviewsIOData : public PreviewsIOData { |
| 22 public: | 22 public: |
| 23 TestPreviewsIOData( | 23 TestPreviewsIOData( |
| 24 const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner, | 24 const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 new TestPreviewsIOData(loop_.task_runner(), loop_.task_runner()))); | 72 new TestPreviewsIOData(loop_.task_runner(), loop_.task_runner()))); |
| 73 set_ui_service( | 73 set_ui_service( |
| 74 base::WrapUnique(new PreviewsUIService(io_data(), loop_.task_runner()))); | 74 base::WrapUnique(new PreviewsUIService(io_data(), loop_.task_runner()))); |
| 75 base::RunLoop().RunUntilIdle(); | 75 base::RunLoop().RunUntilIdle(); |
| 76 // After the outstanding posted tasks have run, |io_data_| should be fully | 76 // After the outstanding posted tasks have run, |io_data_| should be fully |
| 77 // initialized. | 77 // initialized. |
| 78 EXPECT_TRUE(io_data()->initialized()); | 78 EXPECT_TRUE(io_data()->initialized()); |
| 79 } | 79 } |
| 80 | 80 |
| 81 } // namespace previews | 81 } // namespace previews |
| OLD | NEW |