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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_mac.mm

Issue 1809183002: gpu_messages.h => gpu/ipc/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make win_clang_x64_dbg happy by making command_buffer_traits an alias to gpu component on compnet b… Created 4 years, 9 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
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 "content/browser/renderer_host/render_widget_host_view_mac.h" 5 #include "content/browser/renderer_host/render_widget_host_view_mac.h"
6 6
7 #import <objc/runtime.h> 7 #import <objc/runtime.h>
8 #include <OpenGL/gl.h> 8 #include <OpenGL/gl.h>
9 #include <QuartzCore/QuartzCore.h> 9 #include <QuartzCore/QuartzCore.h>
10 #include <stdint.h> 10 #include <stdint.h>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "content/browser/renderer_host/render_widget_helper.h" 46 #include "content/browser/renderer_host/render_widget_helper.h"
47 #include "content/browser/renderer_host/render_widget_host_delegate.h" 47 #include "content/browser/renderer_host/render_widget_host_delegate.h"
48 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" 48 #include "content/browser/renderer_host/render_widget_host_input_event_router.h"
49 #import "content/browser/renderer_host/input/synthetic_gesture_target_mac.h" 49 #import "content/browser/renderer_host/input/synthetic_gesture_target_mac.h"
50 #import "content/browser/renderer_host/render_widget_host_view_mac_dictionary_he lper.h" 50 #import "content/browser/renderer_host/render_widget_host_view_mac_dictionary_he lper.h"
51 #import "content/browser/renderer_host/render_widget_host_view_mac_editcommand_h elper.h" 51 #import "content/browser/renderer_host/render_widget_host_view_mac_editcommand_h elper.h"
52 #include "content/browser/renderer_host/render_widget_resize_helper_mac.h" 52 #include "content/browser/renderer_host/render_widget_resize_helper_mac.h"
53 #import "content/browser/renderer_host/text_input_client_mac.h" 53 #import "content/browser/renderer_host/text_input_client_mac.h"
54 #include "content/common/accessibility_messages.h" 54 #include "content/common/accessibility_messages.h"
55 #include "content/common/edit_command.h" 55 #include "content/common/edit_command.h"
56 #include "content/common/gpu/gpu_messages.h"
57 #include "content/common/input_messages.h" 56 #include "content/common/input_messages.h"
58 #include "content/common/site_isolation_policy.h" 57 #include "content/common/site_isolation_policy.h"
59 #include "content/common/view_messages.h" 58 #include "content/common/view_messages.h"
60 #include "content/common/webplugin_geometry.h" 59 #include "content/common/webplugin_geometry.h"
61 #include "content/public/browser/browser_context.h" 60 #include "content/public/browser/browser_context.h"
62 #include "content/public/browser/browser_plugin_guest_manager.h" 61 #include "content/public/browser/browser_plugin_guest_manager.h"
63 #include "content/public/browser/browser_thread.h" 62 #include "content/public/browser/browser_thread.h"
64 #include "content/public/browser/native_web_keyboard_event.h" 63 #include "content/public/browser/native_web_keyboard_event.h"
65 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" 64 #include "content/public/browser/render_widget_host_view_frame_subscriber.h"
66 #import "content/public/browser/render_widget_host_view_mac_delegate.h" 65 #import "content/public/browser/render_widget_host_view_mac_delegate.h"
67 #include "content/public/browser/web_contents.h" 66 #include "content/public/browser/web_contents.h"
67 #include "gpu/ipc/common/gpu_messages.h"
68 #include "skia/ext/platform_canvas.h" 68 #include "skia/ext/platform_canvas.h"
69 #include "skia/ext/skia_utils_mac.h" 69 #include "skia/ext/skia_utils_mac.h"
70 #include "third_party/WebKit/public/platform/WebScreenInfo.h" 70 #include "third_party/WebKit/public/platform/WebScreenInfo.h"
71 #include "third_party/WebKit/public/web/WebInputEvent.h" 71 #include "third_party/WebKit/public/web/WebInputEvent.h"
72 #import "third_party/mozilla/ComplexTextInputPanel.h" 72 #import "third_party/mozilla/ComplexTextInputPanel.h"
73 #include "ui/base/cocoa/animation_utils.h" 73 #include "ui/base/cocoa/animation_utils.h"
74 #include "ui/base/cocoa/cocoa_base_utils.h" 74 #include "ui/base/cocoa/cocoa_base_utils.h"
75 #import "ui/base/cocoa/fullscreen_window_manager.h" 75 #import "ui/base/cocoa/fullscreen_window_manager.h"
76 #import "ui/base/cocoa/underlay_opengl_hosting_window.h" 76 #import "ui/base/cocoa/underlay_opengl_hosting_window.h"
77 #include "ui/base/layout.h" 77 #include "ui/base/layout.h"
(...skipping 3398 matching lines...) Expand 10 before | Expand all | Expand 10 after
3476 3476
3477 // "-webkit-app-region: drag | no-drag" is implemented on Mac by excluding 3477 // "-webkit-app-region: drag | no-drag" is implemented on Mac by excluding
3478 // regions that are not draggable. (See ControlRegionView in 3478 // regions that are not draggable. (See ControlRegionView in
3479 // native_app_window_cocoa.mm). This requires the render host view to be 3479 // native_app_window_cocoa.mm). This requires the render host view to be
3480 // draggable by default. 3480 // draggable by default.
3481 - (BOOL)mouseDownCanMoveWindow { 3481 - (BOOL)mouseDownCanMoveWindow {
3482 return YES; 3482 return YES;
3483 } 3483 }
3484 3484
3485 @end 3485 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698