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

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

Issue 19618002: Use a direct include of the message_loop header in content/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 "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 #include <QuartzCore/QuartzCore.h> 7 #include <QuartzCore/QuartzCore.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/debug/crash_logging.h" 12 #include "base/debug/crash_logging.h"
13 #include "base/debug/trace_event.h" 13 #include "base/debug/trace_event.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/mac/mac_util.h" 15 #include "base/mac/mac_util.h"
16 #include "base/mac/scoped_cftyperef.h" 16 #include "base/mac/scoped_cftyperef.h"
17 #import "base/mac/scoped_nsobject.h" 17 #import "base/mac/scoped_nsobject.h"
18 #include "base/mac/sdk_forward_declarations.h" 18 #include "base/mac/sdk_forward_declarations.h"
19 #include "base/message_loop.h" 19 #include "base/message_loop/message_loop.h"
20 #include "base/metrics/histogram.h" 20 #include "base/metrics/histogram.h"
21 #include "base/strings/string_util.h" 21 #include "base/strings/string_util.h"
22 #include "base/strings/stringprintf.h" 22 #include "base/strings/stringprintf.h"
23 #include "base/strings/sys_string_conversions.h" 23 #include "base/strings/sys_string_conversions.h"
24 #include "base/strings/utf_string_conversions.h" 24 #include "base/strings/utf_string_conversions.h"
25 #include "base/sys_info.h" 25 #include "base/sys_info.h"
26 #import "content/browser/accessibility/browser_accessibility_cocoa.h" 26 #import "content/browser/accessibility/browser_accessibility_cocoa.h"
27 #include "content/browser/accessibility/browser_accessibility_manager_mac.h" 27 #include "content/browser/accessibility/browser_accessibility_manager_mac.h"
28 #include "content/browser/renderer_host/backing_store_mac.h" 28 #include "content/browser/renderer_host/backing_store_mac.h"
29 #include "content/browser/renderer_host/backing_store_manager.h" 29 #include "content/browser/renderer_host/backing_store_manager.h"
(...skipping 3738 matching lines...) Expand 10 before | Expand all | Expand 10 after
3768 return YES; 3768 return YES;
3769 } 3769 }
3770 3770
3771 - (BOOL)isOpaque { 3771 - (BOOL)isOpaque {
3772 if (renderWidgetHostView_->use_core_animation_) 3772 if (renderWidgetHostView_->use_core_animation_)
3773 return YES; 3773 return YES;
3774 return [super isOpaque]; 3774 return [super isOpaque];
3775 } 3775 }
3776 3776
3777 @end 3777 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698