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

Unified Diff: content/public/browser/web_contents_user_data.h

Issue 11087049: Fix comments per Avi's request. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents_user_data.h
diff --git a/content/public/browser/web_contents_user_data.h b/content/public/browser/web_contents_user_data.h
index b1c0a29104c1f4e2992113df3a80a4f43b231aa9..9dfe170cddd81d586d11774b6af1d7458d1c87d5 100644
--- a/content/public/browser/web_contents_user_data.h
+++ b/content/public/browser/web_contents_user_data.h
@@ -15,13 +15,13 @@ namespace content {
// WebContents. For example:
//
// --- in foo_tab_helper.h ---
-// class FooTabHelper : public WebContentsUserData<FooTabHelper> {
+// class FooTabHelper : public content::WebContentsUserData<FooTabHelper> {
// public:
// virtual ~FooTabHelper();
// // ... more public stuff here ...
// private:
-// explicit FooTabHelper(WebContents* contents);
-// friend class WebContentsUserData<FooTabHelper>;
+// explicit FooTabHelper(content::WebContents* contents);
+// friend class content::WebContentsUserData<FooTabHelper>;
// // ... more private stuff here ...
// }
// --- in foo_tab_helper.cc ---
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698