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

Side by Side Diff: content/browser/renderer_host/compositing_iosurface_mac.h

Issue 18152002: Use a direct include of time headers in content/, part 1. (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 #ifndef CONTENT_BROWSER_RENDERER_HOST_COMPOSITING_IOSURFACE_MAC_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_COMPOSITING_IOSURFACE_MAC_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITING_IOSURFACE_MAC_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_COMPOSITING_IOSURFACE_MAC_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <vector> 9 #include <vector>
10 10
11 #import <Cocoa/Cocoa.h> 11 #import <Cocoa/Cocoa.h>
12 #import <QuartzCore/CVDisplayLink.h> 12 #import <QuartzCore/CVDisplayLink.h>
13 #include <QuartzCore/QuartzCore.h> 13 #include <QuartzCore/QuartzCore.h>
14 14
15 #include "base/callback.h" 15 #include "base/callback.h"
16 #include "base/mac/scoped_cftyperef.h" 16 #include "base/mac/scoped_cftyperef.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/synchronization/lock.h" 18 #include "base/synchronization/lock.h"
19 #include "base/time.h" 19 #include "base/time/time.h"
20 #include "base/timer.h" 20 #include "base/timer/timer.h"
21 #include "media/base/video_frame.h" 21 #include "media/base/video_frame.h"
22 #include "ui/base/latency_info.h" 22 #include "ui/base/latency_info.h"
23 #include "ui/gfx/native_widget_types.h" 23 #include "ui/gfx/native_widget_types.h"
24 #include "ui/gfx/rect.h" 24 #include "ui/gfx/rect.h"
25 #include "ui/gfx/rect_conversions.h" 25 #include "ui/gfx/rect_conversions.h"
26 #include "ui/gfx/size.h" 26 #include "ui/gfx/size.h"
27 27
28 class IOSurfaceSupport; 28 class IOSurfaceSupport;
29 class SkBitmap; 29 class SkBitmap;
30 30
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 366
367 // Error saved by GetAndSaveGLError 367 // Error saved by GetAndSaveGLError
368 GLint gl_error_; 368 GLint gl_error_;
369 369
370 ui::LatencyInfo latency_info_; 370 ui::LatencyInfo latency_info_;
371 }; 371 };
372 372
373 } // namespace content 373 } // namespace content
374 374
375 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITING_IOSURFACE_MAC_H_ 375 #endif // CONTENT_BROWSER_RENDERER_HOST_COMPOSITING_IOSURFACE_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698