Index: content/public/renderer/render_view.h |
diff --git a/content/public/renderer/render_view.h b/content/public/renderer/render_view.h |
index aaa719c0975476fe4f00fa487767fb578d727872..d947553c9263394df5e1143ad183a2cceefc6894 100644 |
--- a/content/public/renderer/render_view.h |
+++ b/content/public/renderer/render_view.h |
@@ -68,6 +68,11 @@ class CONTENT_EXPORT RenderView : public IPC::Sender { |
// Gets WebKit related preferences associated with this view. |
virtual webkit_glue::WebPreferences& GetWebkitPreferences() = 0; |
+ // Overrides the WebKit related preferences associated with this view. Note |
+ // that the browser process my update the preferences at any time. |
+ virtual void OverrideWebkitPreferences( |
jam
2012/11/29 17:19:48
nit: probably call it SetWebKitPreferences for con
jochen (gone - plz use gerrit)
2012/11/29 19:47:36
Done.
|
+ const webkit_glue::WebPreferences& preferences) = 0; |
+ |
// Returns the associated WebView. May return NULL when the view is closing. |
virtual WebKit::WebView* GetWebView() = 0; |