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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.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_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
11 11
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/process.h" 13 #include "base/process.h"
14 #include "base/timer.h" 14 #include "base/timer/timer.h"
15 #include "content/browser/child_process_launcher.h" 15 #include "content/browser/child_process_launcher.h"
16 #include "content/common/content_export.h" 16 #include "content/common/content_export.h"
17 #include "content/public/browser/global_request_id.h" 17 #include "content/public/browser/global_request_id.h"
18 #include "content/public/browser/gpu_data_manager_observer.h" 18 #include "content/public/browser/gpu_data_manager_observer.h"
19 #include "content/public/browser/render_process_host.h" 19 #include "content/public/browser/render_process_host.h"
20 #include "ipc/ipc_channel_proxy.h" 20 #include "ipc/ipc_channel_proxy.h"
21 #include "ui/surface/transport_dib.h" 21 #include "ui/surface/transport_dib.h"
22 22
23 class CommandLine; 23 class CommandLine;
24 struct ViewHostMsg_CompositorSurfaceBuffersSwapped_Params; 24 struct ViewHostMsg_CompositorSurfaceBuffersSwapped_Params;
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 // Prevents the class from being added as a GpuDataManagerImpl observer more 317 // Prevents the class from being added as a GpuDataManagerImpl observer more
318 // than once. 318 // than once.
319 bool gpu_observer_registered_; 319 bool gpu_observer_registered_;
320 320
321 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 321 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
322 }; 322 };
323 323
324 } // namespace content 324 } // namespace content
325 325
326 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 326 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698