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

Side by Side Diff: remoting/client/plugin/pepper_view.cc

Issue 18052008: Use a direct include of time headers in ppapi/, printing/, remoting/. (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
« no previous file with comments | « remoting/base/util.cc ('k') | remoting/codec/audio_decoder_opus.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "remoting/client/plugin/pepper_view.h" 5 #include "remoting/client/plugin/pepper_view.h"
6 6
7 #include <functional> 7 #include <functional>
8 8
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
11 #include "base/synchronization/waitable_event.h" 11 #include "base/synchronization/waitable_event.h"
12 #include "base/time.h" 12 #include "base/time/time.h"
13 #include "ppapi/cpp/completion_callback.h" 13 #include "ppapi/cpp/completion_callback.h"
14 #include "ppapi/cpp/dev/graphics_2d_dev.h" 14 #include "ppapi/cpp/dev/graphics_2d_dev.h"
15 #include "ppapi/cpp/dev/view_dev.h" 15 #include "ppapi/cpp/dev/view_dev.h"
16 #include "ppapi/cpp/image_data.h" 16 #include "ppapi/cpp/image_data.h"
17 #include "ppapi/cpp/point.h" 17 #include "ppapi/cpp/point.h"
18 #include "ppapi/cpp/rect.h" 18 #include "ppapi/cpp/rect.h"
19 #include "ppapi/cpp/size.h" 19 #include "ppapi/cpp/size.h"
20 #include "remoting/base/util.h" 20 #include "remoting/base/util.h"
21 #include "remoting/client/chromoting_stats.h" 21 #include "remoting/client/chromoting_stats.h"
22 #include "remoting/client/client_context.h" 22 #include "remoting/client/client_context.h"
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 299
300 // If there is a buffer queued for rendering then render it now. 300 // If there is a buffer queued for rendering then render it now.
301 if (merge_buffer_ != NULL) { 301 if (merge_buffer_ != NULL) {
302 buffer = merge_buffer_; 302 buffer = merge_buffer_;
303 merge_buffer_ = NULL; 303 merge_buffer_ = NULL;
304 FlushBuffer(merge_clip_area_, buffer, merge_region_); 304 FlushBuffer(merge_clip_area_, buffer, merge_region_);
305 } 305 }
306 } 306 }
307 307
308 } // namespace remoting 308 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/base/util.cc ('k') | remoting/codec/audio_decoder_opus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698