Index: content/browser/renderer_host/render_widget_host_impl.h |
diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h |
index 0c6842a96aa85050ac2bee14bf9932265c0a750f..4f6245651137d02cb0228d14f1598c5662d549c2 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.h |
+++ b/content/browser/renderer_host/render_widget_host_impl.h |
@@ -14,7 +14,6 @@ |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
#include "base/process_util.h" |
-#include "base/property_bag.h" |
#include "base/string16.h" |
#include "base/timer.h" |
#include "build/build_config.h" |
@@ -131,12 +130,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
bool empty() const { return current_size_.IsEmpty(); } |
- // Returns the property bag for this widget, where callers can add extra data |
- // they may wish to associate with it. Returns a pointer rather than a |
- // reference since the PropertyAccessors expect this. |
- const base::PropertyBag* property_bag() const { return &property_bag_; } |
- base::PropertyBag* property_bag() { return &property_bag_; } |
- |
// Called when a renderer object already been created for this host, and we |
// just need to be attached to it. Used for window.open, <select> dropdown |
// menus, and other times when the renderer initiates creating an object. |
@@ -621,9 +614,6 @@ class CONTENT_EXPORT RenderWidgetHostImpl : virtual public RenderWidgetHost, |
// The ID of the corresponding object in the Renderer Instance. |
int routing_id_; |
- // Stores random bits of data for others to associate with this object. |
- base::PropertyBag property_bag_; |
- |
// The ID of the surface corresponding to this render widget. |
int surface_id_; |