Chromium Code Reviews| Index: content/public/browser/web_contents.h |
| diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h |
| index c38df686ace6fd3d7fdfb954ebdc491af4776fc2..e6052a7d1d5c53b52194a492d35bcaf1bdaaf91a 100644 |
| --- a/content/public/browser/web_contents.h |
| +++ b/content/public/browser/web_contents.h |
| @@ -180,6 +180,12 @@ class WebContents : public PageNavigator, |
| virtual void SetUserAgentOverride(const std::string& override) = 0; |
| virtual const std::string& GetUserAgentOverride() const = 0; |
| + // Allows reading and writing the name of the top-level window. |
|
Charlie Reis
2013/04/18 21:26:51
I don't understand why we need this in the public
|
| + virtual void SetWindowName(const std::string& name); |
| + virtual const std::string& GetWindowName() const = 0; |
| + |
| + |
| + |
| // Tab navigation state ------------------------------------------------------ |
| // Returns the current navigation properties, which if a navigation is |