diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 11:38:10 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 11:38:10 +0000 |
commit | c4c01f7ef5c32e52abd09e6b826f82746282411f (patch) | |
tree | 3c34f4f13644d7831800b15a8206c2f50b711a7a /webkit/glue/chrome_client_impl.h | |
parent | ab0eb293ec91e528e6f6e64474687ef07127a718 (diff) | |
download | chromium_src-c4c01f7ef5c32e52abd09e6b826f82746282411f.zip chromium_src-c4c01f7ef5c32e52abd09e6b826f82746282411f.tar.gz chromium_src-c4c01f7ef5c32e52abd09e6b826f82746282411f.tar.bz2 |
Cleanup in webkit/glue/
- make more methods const
- remove unneeded #includes
BUG=7210
Review URL: http://codereview.chromium.org/19535
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9080 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/chrome_client_impl.h')
-rw-r--r-- | webkit/glue/chrome_client_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/chrome_client_impl.h b/webkit/glue/chrome_client_impl.h index 226c93c..8ac4916 100644 --- a/webkit/glue/chrome_client_impl.h +++ b/webkit/glue/chrome_client_impl.h @@ -25,7 +25,7 @@ public: ChromeClientImpl(WebViewImpl* webview); virtual ~ChromeClientImpl(); - WebViewImpl* webview() { return webview_; } + WebViewImpl* webview() const { return webview_; } virtual void chromeDestroyed(); |