diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-24 15:58:15 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-24 15:58:15 +0000 |
commit | 359523120f4b09d9b4c85ad4f36879e1401f7f11 (patch) | |
tree | 2c1598638b2a354af918402b397873ee317a7f04 /ui/views | |
parent | 3497808a68a6185048becb2f4680ed0e63e49801 (diff) | |
download | chromium_src-359523120f4b09d9b4c85ad4f36879e1401f7f11.zip chromium_src-359523120f4b09d9b4c85ad4f36879e1401f7f11.tar.gz chromium_src-359523120f4b09d9b4c85ad4f36879e1401f7f11.tar.bz2 |
Fix the component build for VS2010 while https://chromiumcodereview.appspot.com/10121004/ is being reviewed.
TBR=rogerta
Review URL: http://codereview.chromium.org/10140024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views')
-rw-r--r-- | ui/views/controls/webview/webview.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ui/views/controls/webview/webview.h b/ui/views/controls/webview/webview.h index 5a73dc9..1426362 100644 --- a/ui/views/controls/webview/webview.h +++ b/ui/views/controls/webview/webview.h @@ -17,9 +17,10 @@ namespace views { class NativeViewHost; -class VIEWS_EXPORT WebView : public View, - public content::NotificationObserver, - public content::WebContentsDelegate { +class VIEWS_EXPORT WebView + : public View, + public NON_EXPORTED_BASE(content::NotificationObserver), + public NON_EXPORTED_BASE(content::WebContentsDelegate) { public: static const char kViewClassName[]; |