| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_AURA_BROWSER_COMPOSITOR_OUTPUT_SURFACE_PROXY_H_ | 5 #ifndef CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_PROXY_H_ |
| 6 #define CONTENT_BROWSER_AURA_BROWSER_COMPOSITOR_OUTPUT_SURFACE_PROXY_H_ | 6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_PROXY_H_ |
| 7 | 7 |
| 8 #include "base/id_map.h" | 8 #include "base/id_map.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 | 12 |
| 13 namespace base { class SingleThreadTaskRunner; } | 13 namespace base { class SingleThreadTaskRunner; } |
| 14 | 14 |
| 15 namespace IPC { class Message; } | 15 namespace IPC { class Message; } |
| 16 | 16 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 base::TimeDelta interval); | 41 base::TimeDelta interval); |
| 42 | 42 |
| 43 IDMap<BrowserCompositorOutputSurface>* surface_map_; | 43 IDMap<BrowserCompositorOutputSurface>* surface_map_; |
| 44 int connected_to_gpu_process_host_id_; | 44 int connected_to_gpu_process_host_id_; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOutputSurfaceProxy); | 46 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOutputSurfaceProxy); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace content | 49 } // namespace content |
| 50 | 50 |
| 51 #endif // CONTENT_BROWSER_AURA_BROWSER_COMPOSITOR_OUTPUT_SURFACE_PROXY_H_ | 51 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_PROXY_H_ |
| OLD | NEW |