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

Unified Diff: content/browser/renderer_host/render_widget_host.h

Issue 8652002: Move PropertyBag to base. Originally this was in chrome\common because only chrome used it. Now t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: move to base namespace and forward declare where possible Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/html_dialog_ui.cc ('k') | content/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_widget_host.h
===================================================================
--- content/browser/renderer_host/render_widget_host.h (revision 111170)
+++ content/browser/renderer_host/render_widget_host.h (working copy)
@@ -14,10 +14,10 @@
#include "base/gtest_prod_util.h"
#include "base/memory/scoped_ptr.h"
#include "base/process_util.h"
+#include "base/property_bag.h"
#include "base/string16.h"
#include "base/timer.h"
#include "content/common/content_export.h"
-#include "content/common/property_bag.h"
#include "content/public/browser/native_web_keyboard_event.h"
#include "content/public/common/page_zoom.h"
#include "ipc/ipc_channel.h"
@@ -166,8 +166,8 @@
// 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 PropertyBag* property_bag() const { return &property_bag_; }
- PropertyBag* property_bag() { return &property_bag_; }
+ 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
@@ -631,7 +631,7 @@
content::RenderProcessHost* process_;
// Stores random bits of data for others to associate with this object.
- PropertyBag property_bag_;
+ base::PropertyBag property_bag_;
// The ID of the corresponding object in the Renderer Instance.
int routing_id_;
« no previous file with comments | « chrome/browser/ui/webui/html_dialog_ui.cc ('k') | content/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698