Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: content/shell/renderer/layout_test/layout_test_content_renderer_client.h

Issue 2345233002: Enable runtime features with status=test before WebKit (Closed)
Patch Set: Rename Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H _ 5 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H _
6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H _ 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H _
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "content/shell/renderer/shell_content_renderer_client.h" 10 #include "content/shell/renderer/shell_content_renderer_client.h"
(...skipping 21 matching lines...) Expand all
32 blink::WebAudioDevice* OverrideCreateAudioDevice(double sample_rate) override; 32 blink::WebAudioDevice* OverrideCreateAudioDevice(double sample_rate) override;
33 blink::WebClipboard* OverrideWebClipboard() override; 33 blink::WebClipboard* OverrideWebClipboard() override;
34 blink::WebThemeEngine* OverrideThemeEngine() override; 34 blink::WebThemeEngine* OverrideThemeEngine() override;
35 std::unique_ptr<blink::WebAppBannerClient> CreateAppBannerClient( 35 std::unique_ptr<blink::WebAppBannerClient> CreateAppBannerClient(
36 RenderFrame* render_frame) override; 36 RenderFrame* render_frame) override;
37 std::unique_ptr<MediaStreamRendererFactory> CreateMediaStreamRendererFactory() 37 std::unique_ptr<MediaStreamRendererFactory> CreateMediaStreamRendererFactory()
38 override; 38 override;
39 std::unique_ptr<gfx::ICCProfile> GetImageDecodeColorProfile() override; 39 std::unique_ptr<gfx::ICCProfile> GetImageDecodeColorProfile() override;
40 void DidInitializeWorkerContextOnWorkerThread( 40 void DidInitializeWorkerContextOnWorkerThread(
41 v8::Local<v8::Context> context) override; 41 v8::Local<v8::Context> context) override;
42 void SetRuntimeFeaturesDefaultsBeforeBlinkInitialization() override;
42 43
43 private: 44 private:
44 std::unique_ptr<LayoutTestRenderThreadObserver> shell_observer_; 45 std::unique_ptr<LayoutTestRenderThreadObserver> shell_observer_;
45 std::unique_ptr<MockWebClipboardImpl> clipboard_; 46 std::unique_ptr<MockWebClipboardImpl> clipboard_;
46 }; 47 };
47 48
48 } // namespace content 49 } // namespace content
49 50
50 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIEN T_H_ 51 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIEN T_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698