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

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

Issue 2224063002: Use persistent memory for receiving metrics from sub-processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: create helper method; make test appear to be on UI thread Created 4 years, 4 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 22 matching lines...) Expand all
33 #include "ui/gfx/gpu_memory_buffer.h" 33 #include "ui/gfx/gpu_memory_buffer.h"
34 #include "ui/gl/gpu_switching_observer.h" 34 #include "ui/gl/gpu_switching_observer.h"
35 35
36 #if defined(OS_ANDROID) 36 #if defined(OS_ANDROID)
37 #include "content/public/browser/android/interface_registry_android.h" 37 #include "content/public/browser/android/interface_registry_android.h"
38 #endif 38 #endif
39 39
40 namespace base { 40 namespace base {
41 class CommandLine; 41 class CommandLine;
42 class MessageLoop; 42 class MessageLoop;
43 class SharedPersistentMemoryAllocator;
43 } 44 }
44 45
45 namespace gfx { 46 namespace gfx {
46 class Size; 47 class Size;
47 } 48 }
48 49
49 namespace IPC { 50 namespace IPC {
50 class ChannelMojoHost; 51 class ChannelMojoHost;
51 } 52 }
52 53
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 scoped_refptr<ResourceMessageFilter> resource_message_filter_; 534 scoped_refptr<ResourceMessageFilter> resource_message_filter_;
534 535
535 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 536 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
536 537
537 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 538 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
538 }; 539 };
539 540
540 } // namespace content 541 } // namespace content
541 542
542 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 543 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698