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

Unified Diff: Source/core/frame/NavigatorID.h

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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
Index: Source/core/frame/NavigatorID.h
diff --git a/Source/core/frame/NavigatorID.h b/Source/core/frame/NavigatorID.h
index 9e31d3100eee499f3fb9a226ab2b8eb1589c7e5a..a69628036ddff0a8b2f4d9fa3eda742c78791f50 100644
--- a/Source/core/frame/NavigatorID.h
+++ b/Source/core/frame/NavigatorID.h
@@ -39,12 +39,12 @@ class NavigatorBase;
class NavigatorID {
public:
- static String appName(const NavigatorBase*);
- static String appVersion(const NavigatorBase*);
- static String userAgent(const NavigatorBase*);
- static String platform(const NavigatorBase*);
- static String appCodeName(const NavigatorBase*);
- static String product(const NavigatorBase*);
+ static String appName(const NavigatorBase&);
+ static String appVersion(const NavigatorBase&);
+ static String userAgent(const NavigatorBase&);
+ static String platform(const NavigatorBase&);
+ static String appCodeName(const NavigatorBase&);
+ static String product(const NavigatorBase&);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698