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

Side by Side Diff: content/renderer/gpu/mailbox_output_surface.h

Issue 832953002: Cleanup: Update the path to gfx size headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 11 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_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ 5 #ifndef CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_
6 #define CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ 6 #define CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_
7 7
8 #include <queue> 8 #include <queue>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "cc/resources/resource_format.h" 11 #include "cc/resources/resource_format.h"
12 #include "cc/resources/transferable_resource.h" 12 #include "cc/resources/transferable_resource.h"
13 #include "content/renderer/gpu/compositor_output_surface.h" 13 #include "content/renderer/gpu/compositor_output_surface.h"
14 #include "ui/gfx/size.h" 14 #include "ui/gfx/geometry/size.h"
15 15
16 namespace cc { 16 namespace cc {
17 class CompositorFrameAck; 17 class CompositorFrameAck;
18 } 18 }
19 19
20 namespace content { 20 namespace content {
21 class FrameSwapMessageQueue; 21 class FrameSwapMessageQueue;
22 22
23 // Implementation of CompositorOutputSurface that renders to textures which 23 // Implementation of CompositorOutputSurface that renders to textures which
24 // are sent to the browser through the mailbox extension. 24 // are sent to the browser through the mailbox extension.
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 std::queue<TransferableFrame> returned_textures_; 68 std::queue<TransferableFrame> returned_textures_;
69 69
70 uint32 fbo_; 70 uint32 fbo_;
71 bool is_backbuffer_discarded_; 71 bool is_backbuffer_discarded_;
72 cc::ResourceFormat format_; 72 cc::ResourceFormat format_;
73 }; 73 };
74 74
75 } // namespace content 75 } // namespace content
76 76
77 #endif // CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_ 77 #endif // CONTENT_RENDERER_GPU_MAILBOX_OUTPUT_SURFACE_H_
OLDNEW
« no previous file with comments | « content/renderer/fetchers/multi_resolution_image_resource_fetcher.cc ('k') | content/renderer/image_loading_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698