Chromium Code Reviews| Index: content/public/renderer/render_view.h |
| diff --git a/content/public/renderer/render_view.h b/content/public/renderer/render_view.h |
| index e8afafc9ffe119b91b03c99f22e5584de2a5d6a0..fb2ecbcf7e9297f02820e01b5590cb2f6dd11932 100644 |
| --- a/content/public/renderer/render_view.h |
| +++ b/content/public/renderer/render_view.h |
| @@ -33,6 +33,7 @@ class Size; |
| namespace content { |
| +class CompositorDependencies; |
| class RenderFrame; |
| class RenderViewVisitor; |
| struct SSLStatus; |
| @@ -59,8 +60,10 @@ class CONTENT_EXPORT RenderView : public IPC::Sender { |
| static void ForEach(RenderViewVisitor* visitor); |
| // Applies WebKit related preferences to this view. |
| - static void ApplyWebPreferences(const WebPreferences& preferences, |
| - blink::WebView* web_view); |
| + static void ApplyWebPreferencesInternal( |
| + const WebPreferences& preferences, |
| + blink::WebView* web_view, |
| + CompositorDependencies* compositor_deps); |
|
piman
2015/07/01 16:08:05
What I had in mind was to have ApplyWebPreferences
MuVen
2015/07/01 17:01:39
Done.
|
| // Returns the main RenderFrame. |
| virtual RenderFrame* GetMainRenderFrame() = 0; |