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

Side by Side Diff: webkit/glue/webwidget_impl.cc

Issue 58008: Replace webkit/glue/screen_info.h with WebKit/chromium/public/WebScreenInfo.h... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 8
9 MSVC_PUSH_WARNING_LEVEL(0); 9 MSVC_PUSH_WARNING_LEVEL(0);
10 #include "Cursor.h" 10 #include "Cursor.h"
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 return NULL; 293 return NULL;
294 } 294 }
295 295
296 void WebWidgetImpl::onScrollPositionChanged(Widget* widget) { 296 void WebWidgetImpl::onScrollPositionChanged(Widget* widget) {
297 } 297 }
298 298
299 bool WebWidgetImpl::isHidden() { 299 bool WebWidgetImpl::isHidden() {
300 if (!delegate_) 300 if (!delegate_)
301 return true; 301 return true;
302 302
303 return delegate_->IsHidden(); 303 return delegate_->IsHidden(this);
304 } 304 }
305 #endif 305 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698