| 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 "content/test/fuzzer/fuzzer_support.h" | 5 #include "content/test/fuzzer/fuzzer_support.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/feature_list.h" | 9 #include "base/feature_list.h" |
| 10 #include "base/i18n/icu_util.h" | 10 #include "base/i18n/icu_util.h" |
| 11 #include "content/common/navigation_params.h" | 11 #include "content/common/navigation_params.h" |
| 12 #include "content/renderer/render_view_impl.h" | 12 #include "content/renderer/render_view_impl.h" |
| 13 #include "content/test/test_render_frame.h" | 13 #include "content/test/test_render_frame.h" |
| 14 #include "gin/v8_initializer.h" | 14 #include "gin/v8_initializer.h" |
| 15 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | |
| 16 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 15 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
| 17 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" | 16 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" |
| 18 | 17 |
| 19 namespace content { | 18 namespace content { |
| 20 | 19 |
| 21 void RenderViewTestAdapter::SetUp() { | 20 void RenderViewTestAdapter::SetUp() { |
| 22 RenderViewTest::SetUp(); | 21 RenderViewTest::SetUp(); |
| 23 } | 22 } |
| 24 | 23 |
| 25 Env::Env() { | 24 Env::Env() { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 37 gin::ArrayBufferAllocator::SharedInstance()); | 36 gin::ArrayBufferAllocator::SharedInstance()); |
| 38 | 37 |
| 39 adapter.reset(new RenderViewTestAdapter()); | 38 adapter.reset(new RenderViewTestAdapter()); |
| 40 adapter->SetUp(); | 39 adapter->SetUp(); |
| 41 } | 40 } |
| 42 | 41 |
| 43 Env::~Env() { | 42 Env::~Env() { |
| 44 LOG(FATAL) << "NOT SUPPORTED"; | 43 LOG(FATAL) << "NOT SUPPORTED"; |
| 45 } | 44 } |
| 46 } // namespace content | 45 } // namespace content |
| OLD | NEW |