Index: chrome/renderer/render_view.h |
=================================================================== |
--- chrome/renderer/render_view.h (revision 49273) |
+++ chrome/renderer/render_view.h (working copy) |
@@ -432,9 +432,6 @@ |
std::string* json_retval); |
virtual WebKit::WebCookieJar* GetCookieJar(); |
- // Do not delete directly. This class is reference counted. |
- virtual ~RenderView(); |
- |
// Called when a plugin has crashed. |
void PluginCrashed(const FilePath& plugin_path); |
@@ -586,6 +583,9 @@ |
const WebPreferences& webkit_preferences, |
int64 session_storage_namespace_id); |
+ // Do not delete directly. This class is reference counted. |
+ virtual ~RenderView(); |
+ |
// Initializes this view with the given parent and ID. The |routing_id| can be |
// set to 'MSG_ROUTING_NONE' if the true ID is not yet known. In this case, |
// CompleteInit must be called later with the true ID. |