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

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

Issue 2132593002: Remove remaining calls to deprecated MessageLoop methods on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove ios call sites Created 4 years, 5 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>
11 11
12 #include <limits> 12 #include <limits>
13 #include <utility> 13 #include <utility>
14 14
15 #include "base/bind.h" 15 #include "base/bind.h"
16 #include "base/callback_helpers.h" 16 #include "base/callback_helpers.h"
17 #include "base/command_line.h" 17 #include "base/command_line.h"
18 #include "base/debug/crash_logging.h" 18 #include "base/debug/crash_logging.h"
19 #include "base/logging.h" 19 #include "base/logging.h"
20 #include "base/mac/scoped_cftyperef.h" 20 #include "base/mac/scoped_cftyperef.h"
21 #import "base/mac/scoped_nsobject.h" 21 #import "base/mac/scoped_nsobject.h"
22 #include "base/mac/sdk_forward_declarations.h" 22 #include "base/mac/sdk_forward_declarations.h"
23 #include "base/memory/ref_counted.h" 23 #include "base/memory/ref_counted.h"
24 #include "base/message_loop/message_loop.h"
25 #include "base/metrics/histogram.h" 24 #include "base/metrics/histogram.h"
26 #include "base/numerics/safe_conversions.h" 25 #include "base/numerics/safe_conversions.h"
27 #include "base/strings/string_util.h" 26 #include "base/strings/string_util.h"
28 #include "base/strings/stringprintf.h" 27 #include "base/strings/stringprintf.h"
29 #include "base/strings/sys_string_conversions.h" 28 #include "base/strings/sys_string_conversions.h"
30 #include "base/strings/utf_string_conversions.h" 29 #include "base/strings/utf_string_conversions.h"
31 #include "base/sys_info.h" 30 #include "base/sys_info.h"
31 #include "base/threading/thread_task_runner_handle.h"
32 #include "base/trace_event/trace_event.h" 32 #include "base/trace_event/trace_event.h"
33 #import "content/browser/accessibility/browser_accessibility_cocoa.h" 33 #import "content/browser/accessibility/browser_accessibility_cocoa.h"
34 #import "content/browser/accessibility/browser_accessibility_mac.h" 34 #import "content/browser/accessibility/browser_accessibility_mac.h"
35 #include "content/browser/accessibility/browser_accessibility_manager_mac.h" 35 #include "content/browser/accessibility/browser_accessibility_manager_mac.h"
36 #include "content/browser/bad_message.h" 36 #include "content/browser/bad_message.h"
37 #import "content/browser/cocoa/system_hotkey_helper_mac.h" 37 #import "content/browser/cocoa/system_hotkey_helper_mac.h"
38 #import "content/browser/cocoa/system_hotkey_map.h" 38 #import "content/browser/cocoa/system_hotkey_map.h"
39 #include "content/browser/frame_host/frame_tree.h" 39 #include "content/browser/frame_host/frame_tree.h"
40 #include "content/browser/frame_host/frame_tree_node.h" 40 #include "content/browser/frame_host/frame_tree_node.h"
41 #include "content/browser/frame_host/render_frame_host_impl.h" 41 #include "content/browser/frame_host/render_frame_host_impl.h"
(...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 } 1133 }
1134 } 1134 }
1135 1135
1136 void RenderWidgetHostViewMac::OnSetNeedsBeginFrames(bool needs_begin_frames) { 1136 void RenderWidgetHostViewMac::OnSetNeedsBeginFrames(bool needs_begin_frames) {
1137 browser_compositor_->SetNeedsBeginFrames(needs_begin_frames); 1137 browser_compositor_->SetNeedsBeginFrames(needs_begin_frames);
1138 } 1138 }
1139 1139
1140 void RenderWidgetHostViewMac::KillSelf() { 1140 void RenderWidgetHostViewMac::KillSelf() {
1141 if (!weak_factory_.HasWeakPtrs()) { 1141 if (!weak_factory_.HasWeakPtrs()) {
1142 [cocoa_view_ setHidden:YES]; 1142 [cocoa_view_ setHidden:YES];
1143 base::MessageLoop::current()->PostTask(FROM_HERE, 1143 base::ThreadTaskRunnerHandle::Get()->PostTask(
1144 base::Bind(&RenderWidgetHostViewMac::ShutdownHost, 1144 FROM_HERE, base::Bind(&RenderWidgetHostViewMac::ShutdownHost,
1145 weak_factory_.GetWeakPtr())); 1145 weak_factory_.GetWeakPtr()));
1146 } 1146 }
1147 } 1147 }
1148 1148
1149 bool RenderWidgetHostViewMac::GetLineBreakIndex( 1149 bool RenderWidgetHostViewMac::GetLineBreakIndex(
1150 const std::vector<gfx::Rect>& bounds, 1150 const std::vector<gfx::Rect>& bounds,
1151 const gfx::Range& range, 1151 const gfx::Range& range,
1152 size_t* line_break_point) { 1152 size_t* line_break_point) {
1153 DCHECK(line_break_point); 1153 DCHECK(line_break_point);
1154 if (range.start() >= bounds.size() || range.is_reversed() || range.is_empty()) 1154 if (range.start() >= bounds.size() || range.is_reversed() || range.is_empty())
1155 return false; 1155 return false;
(...skipping 2088 matching lines...) Expand 10 before | Expand all | Expand 10 after
3244 3244
3245 // "-webkit-app-region: drag | no-drag" is implemented on Mac by excluding 3245 // "-webkit-app-region: drag | no-drag" is implemented on Mac by excluding
3246 // regions that are not draggable. (See ControlRegionView in 3246 // regions that are not draggable. (See ControlRegionView in
3247 // native_app_window_cocoa.mm). This requires the render host view to be 3247 // native_app_window_cocoa.mm). This requires the render host view to be
3248 // draggable by default. 3248 // draggable by default.
3249 - (BOOL)mouseDownCanMoveWindow { 3249 - (BOOL)mouseDownCanMoveWindow {
3250 return YES; 3250 return YES;
3251 } 3251 }
3252 3252
3253 @end 3253 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698