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

Unified Diff: chrome/browser/renderer_host/render_widget_host_view_win.h

Issue 5075003: Converts usage of SetProp/GetProp to a map. Even after making sure we (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix gyp files Created 10 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
Index: chrome/browser/renderer_host/render_widget_host_view_win.h
diff --git a/chrome/browser/renderer_host/render_widget_host_view_win.h b/chrome/browser/renderer_host/render_widget_host_view_win.h
index d02193fc81ecd0bcd1efb5f7639c8d1692a88b4c..13609e6d90cd6fa387afad96c458ae935ab28d28 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_win.h
+++ b/chrome/browser/renderer_host/render_widget_host_view_win.h
@@ -25,6 +25,9 @@
#include "webkit/glue/webcursor.h"
namespace app {
+
+class ViewProp;
+
namespace win {
class ScopedProp;
}
@@ -340,7 +343,8 @@ class RenderWidgetHostViewWin
// method.
WebKit::WebTextInputType text_input_type_;
- ScopedVector<app::win::ScopedProp> props_;
+ ScopedVector<app::ViewProp> props_;
+ scoped_ptr<app::win::ScopedProp> renderer_id_prop_;
DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin);
};
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome/browser/renderer_host/render_widget_host_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698