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

Side by Side Diff: content/port/browser/render_widget_host_view_port.h

Issue 11475017: Revert 171569 as it broke some browser_tests on win_aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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 #ifndef CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ 5 #ifndef CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_
6 #define CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ 6 #define CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/process_util.h" 9 #include "base/process_util.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 float page_scale_factor, 237 float page_scale_factor,
238 float min_page_scale_factor, 238 float min_page_scale_factor,
239 float max_page_scale_factor, 239 float max_page_scale_factor,
240 const gfx::Size& content_size) = 0; 240 const gfx::Size& content_size) = 0;
241 virtual void HasTouchEventHandlers(bool need_touch_events) = 0; 241 virtual void HasTouchEventHandlers(bool need_touch_events) = 0;
242 #endif 242 #endif
243 243
244 virtual void AcceleratedSurfaceNew( 244 virtual void AcceleratedSurfaceNew(
245 int32 width_in_pixel, 245 int32 width_in_pixel,
246 int32 height_in_pixel, 246 int32 height_in_pixel,
247 uint64 surface_id, 247 uint64 surface_id) {}
248 const std::string& mailbox_name) {} 248 virtual void AcceleratedSurfaceRelease(uint64 surface_id) {}
249 virtual void AcceleratedSurfaceRelease() {}
250 249
251 #if defined(TOOLKIT_GTK) 250 #if defined(TOOLKIT_GTK)
252 virtual void CreatePluginContainer(gfx::PluginWindowHandle id) = 0; 251 virtual void CreatePluginContainer(gfx::PluginWindowHandle id) = 0;
253 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) = 0; 252 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) = 0;
254 #endif // defined(TOOLKIT_GTK) 253 #endif // defined(TOOLKIT_GTK)
255 254
256 #if defined(OS_WIN) && !defined(USE_AURA) 255 #if defined(OS_WIN) && !defined(USE_AURA)
257 virtual void WillWmDestroy() = 0; 256 virtual void WillWmDestroy() = 0;
258 #endif 257 #endif
259 258
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 virtual BrowserAccessibilityManager* 294 virtual BrowserAccessibilityManager*
296 GetBrowserAccessibilityManager() const = 0; 295 GetBrowserAccessibilityManager() const = 0;
297 virtual void OnAccessibilityNotifications( 296 virtual void OnAccessibilityNotifications(
298 const std::vector<AccessibilityHostMsg_NotificationParams>& params) { 297 const std::vector<AccessibilityHostMsg_NotificationParams>& params) {
299 } 298 }
300 }; 299 };
301 300
302 } // namespace content 301 } // namespace content
303 302
304 #endif // CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ 303 #endif // CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_
OLDNEW
« no previous file with comments | « content/common/gpu/texture_image_transport_surface.cc ('k') | gpu/command_buffer/service/mailbox_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698