diff options
Diffstat (limited to 'webkit/glue/chrome_client_impl.h')
-rw-r--r-- | webkit/glue/chrome_client_impl.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/webkit/glue/chrome_client_impl.h b/webkit/glue/chrome_client_impl.h index 2c6fc22..8ac4916 100644 --- a/webkit/glue/chrome_client_impl.h +++ b/webkit/glue/chrome_client_impl.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ -#define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ +#ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H__ +#define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H__ #include "base/compiler_specific.h" @@ -21,7 +21,7 @@ struct WindowFeatures; // Handles window-level notifications from WebCore on behalf of a WebView. class ChromeClientImpl : public WebCore::ChromeClientChromium { - public: +public: ChromeClientImpl(WebViewImpl* webview); virtual ~ChromeClientImpl(); @@ -81,7 +81,7 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium { const WebCore::String& defaultValue, WebCore::String& result); - virtual void setStatusbarText(const WebCore::String& message); + virtual void setStatusbarText(const WebCore::String&); virtual bool shouldInterruptJavaScript(); // Returns true if anchors should accept keyboard focus with the tab key. @@ -127,7 +127,7 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium { virtual void formStateDidChange(const WebCore::Node*); - private: +private: WebViewImpl* webview_; // weak pointer bool toolbars_visible_; bool statusbar_visible_; @@ -138,4 +138,5 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium { bool ignore_next_set_cursor_; }; -#endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ +#endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H__ + |