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

Unified Diff: chrome/common/property_bag.h

Issue 4694008: Make pink's TabContentsWrapper change compile on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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/common/property_bag.h
===================================================================
--- chrome/common/property_bag.h (revision 66453)
+++ chrome/common/property_bag.h (working copy)
@@ -36,11 +36,11 @@
//
// void doit(SomeObjectThatImplementsPropertyBag* object) {
// PropertyAccessor<int>* accessor = my_accessor();
-// int* property = accessor.GetProperty(object);
+// int* property = accessor->GetProperty(object);
// if (property)
// ... use property ...
//
-// accessor.SetProperty(object, 22);
+// accessor->SetProperty(object, 22);
// }
class PropertyBag {
public:

Powered by Google App Engine
This is Rietveld 408576698