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

Side by Side Diff: chrome/browser/renderer_host/render_widget_host_view_views.h

Issue 8566011: Completes the GetWindowRect/GetRootWindowRect/GetScreenInfo changes I thought I had finished with... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host_view_views_touch.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE; 111 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE;
112 #endif 112 #endif
113 virtual void SetVisuallyDeemphasized(const SkColor* color, 113 virtual void SetVisuallyDeemphasized(const SkColor* color,
114 bool animate) OVERRIDE; 114 bool animate) OVERRIDE;
115 virtual void UnhandledWheelEvent( 115 virtual void UnhandledWheelEvent(
116 const WebKit::WebMouseWheelEvent& event) OVERRIDE; 116 const WebKit::WebMouseWheelEvent& event) OVERRIDE;
117 virtual void SetHasHorizontalScrollbar( 117 virtual void SetHasHorizontalScrollbar(
118 bool has_horizontal_scrollbar) OVERRIDE; 118 bool has_horizontal_scrollbar) OVERRIDE;
119 virtual void SetScrollOffsetPinning( 119 virtual void SetScrollOffsetPinning(
120 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; 120 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE;
121 #if defined(OS_WIN) 121 #if defined(OS_WIN) && !defined(USE_AURA)
122 virtual void WillWmDestroy() OVERRIDE; 122 virtual void WillWmDestroy() OVERRIDE;
123 #endif 123 #endif
124 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE; 124 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE;
125 virtual bool LockMouse() OVERRIDE; 125 virtual bool LockMouse() OVERRIDE;
126 virtual void UnlockMouse() OVERRIDE; 126 virtual void UnlockMouse() OVERRIDE;
127 127
128 // Overridden from views::TouchSelectionClientView. 128 // Overridden from views::TouchSelectionClientView.
129 virtual void SelectRect(const gfx::Point& start, 129 virtual void SelectRect(const gfx::Point& start,
130 const gfx::Point& end) OVERRIDE; 130 const gfx::Point& end) OVERRIDE;
131 131
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 312
313 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 313 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
314 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > 314 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> >
315 accelerated_surface_containers_; 315 accelerated_surface_containers_;
316 #endif 316 #endif
317 317
318 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); 318 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews);
319 }; 319 };
320 320
321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host_view_views_touch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698