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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_guest.cc

Issue 11552009: Add support for calculating the position of the top controls in the cc layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing CC_EXPORT...learn to run try jobs manually Created 7 years, 11 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/bind_helpers.h" 5 #include "base/bind_helpers.h"
6 #include "base/logging.h" 6 #include "base/logging.h"
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "content/browser/browser_plugin/browser_plugin_guest.h" 8 #include "content/browser/browser_plugin/browser_plugin_guest.h"
9 #include "content/browser/renderer_host/render_view_host_impl.h" 9 #include "content/browser/renderer_host/render_view_host_impl.h"
10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h"
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 float minimum_scale, 365 float minimum_scale,
366 float maximum_scale) { 366 float maximum_scale) {
367 NOTIMPLEMENTED(); 367 NOTIMPLEMENTED();
368 } 368 }
369 369
370 void RenderWidgetHostViewGuest::UpdateFrameInfo( 370 void RenderWidgetHostViewGuest::UpdateFrameInfo(
371 const gfx::Vector2d& scroll_offset, 371 const gfx::Vector2d& scroll_offset,
372 float page_scale_factor, 372 float page_scale_factor,
373 float min_page_scale_factor, 373 float min_page_scale_factor,
374 float max_page_scale_factor, 374 float max_page_scale_factor,
375 const gfx::Size& content_size) { 375 const gfx::Size& content_size,
376 const gfx::Vector2dF& controls_offset,
377 const gfx::Vector2dF& content_offset) {
376 NOTIMPLEMENTED(); 378 NOTIMPLEMENTED();
377 } 379 }
378 380
379 void RenderWidgetHostViewGuest::HasTouchEventHandlers(bool need_touch_events) { 381 void RenderWidgetHostViewGuest::HasTouchEventHandlers(bool need_touch_events) {
380 NOTIMPLEMENTED(); 382 NOTIMPLEMENTED();
381 } 383 }
382 #endif // defined(OS_ANDROID) 384 #endif // defined(OS_ANDROID)
383 385
384 #if defined(TOOLKIT_GTK) 386 #if defined(TOOLKIT_GTK)
385 GdkEventButton* RenderWidgetHostViewGuest::GetLastMouseDown() { 387 GdkEventButton* RenderWidgetHostViewGuest::GetLastMouseDown() {
(...skipping 23 matching lines...) Expand all
409 } 411 }
410 #endif 412 #endif
411 413
412 #if defined(OS_POSIX) || defined(USE_AURA) 414 #if defined(OS_POSIX) || defined(USE_AURA)
413 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { 415 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) {
414 NOTIMPLEMENTED(); 416 NOTIMPLEMENTED();
415 } 417 }
416 #endif // defined(OS_POSIX) || defined(USE_AURA) 418 #endif // defined(OS_POSIX) || defined(USE_AURA)
417 419
418 } // namespace content 420 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_guest.h ('k') | content/browser/renderer_host/test_render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698