| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "blimp/engine/common/blimp_browser_context.h" | |
| 6 | |
| 7 #include "base/metrics/user_metrics.h" | |
| 8 #include "base/threading/thread_task_runner_handle.h" | |
| 9 #include "components/metrics/metrics_service.h" | |
| 10 #include "content/public/browser/notification_service.h" | |
| 11 #include "content/public/test/test_browser_thread_bundle.h" | |
| 12 #include "net/log/net_log.h" | |
| 13 #include "testing/gtest/include/gtest/gtest.h" | |
| 14 | |
| 15 namespace blimp { | |
| 16 namespace engine { | |
| 17 | |
| 18 class BlimpBrowserContextTest : public testing::Test { | |
| 19 public: | |
| 20 BlimpBrowserContextTest() {} | |
| 21 | |
| 22 protected: | |
| 23 void SetUp() override { | |
| 24 // Set up NotificationService for StabilityMetricsHelper to use. | |
| 25 notification_service_.reset(content::NotificationService::Create()); | |
| 26 | |
| 27 base::SetRecordActionTaskRunner(base::ThreadTaskRunnerHandle::Get()); | |
| 28 | |
| 29 // Create BlimpBrowserContext. | |
| 30 browser_context_.reset(new BlimpBrowserContext(false /* off_the_record */, | |
| 31 &net_log_)); | |
| 32 } | |
| 33 | |
| 34 void TearDown() override { | |
| 35 // Clears static variable in MetricsService | |
| 36 metrics::MetricsService::SetExecutionPhase( | |
| 37 metrics::MetricsService::UNINITIALIZED_PHASE, | |
| 38 browser_context_->GetPrefService()); | |
| 39 } | |
| 40 | |
| 41 private: | |
| 42 content::TestBrowserThreadBundle thread_bundle_; | |
| 43 std::unique_ptr<content::NotificationService> notification_service_; | |
| 44 net::NetLog net_log_; | |
| 45 std::unique_ptr<BlimpBrowserContext> browser_context_; | |
| 46 | |
| 47 DISALLOW_COPY_AND_ASSIGN(BlimpBrowserContextTest); | |
| 48 }; | |
| 49 | |
| 50 TEST_F(BlimpBrowserContextTest, CtorDtor) { | |
| 51 // Covers construction and destruction of BlimpBrowserContext and | |
| 52 // associated metrics setup and teardown. | |
| 53 } | |
| 54 | |
| 55 } // namespace engine | |
| 56 } // namespace blimp | |
| OLD | NEW |