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

Side by Side Diff: cc/output/copy_output_result.h

Issue 660333004: cc cleanup: Update paths to geometry headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 1 month 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
« no previous file with comments | « cc/output/copy_output_request.h ('k') | cc/output/filter_operations_unittest.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CC_OUTPUT_COPY_OUTPUT_RESULT_H_ 5 #ifndef CC_OUTPUT_COPY_OUTPUT_RESULT_H_
6 #define CC_OUTPUT_COPY_OUTPUT_RESULT_H_ 6 #define CC_OUTPUT_COPY_OUTPUT_RESULT_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "cc/base/cc_export.h" 9 #include "cc/base/cc_export.h"
10 #include "cc/resources/single_release_callback.h" 10 #include "cc/resources/single_release_callback.h"
11 #include "cc/resources/texture_mailbox.h" 11 #include "cc/resources/texture_mailbox.h"
12 #include "ui/gfx/size.h" 12 #include "ui/gfx/geometry/size.h"
13 13
14 class SkBitmap; 14 class SkBitmap;
15 15
16 namespace cc { 16 namespace cc {
17 class TextureMailbox; 17 class TextureMailbox;
18 18
19 class CC_EXPORT CopyOutputResult { 19 class CC_EXPORT CopyOutputResult {
20 public: 20 public:
21 static scoped_ptr<CopyOutputResult> CreateEmptyResult() { 21 static scoped_ptr<CopyOutputResult> CreateEmptyResult() {
22 return make_scoped_ptr(new CopyOutputResult); 22 return make_scoped_ptr(new CopyOutputResult);
(...skipping 30 matching lines...) Expand all
53 53
54 gfx::Size size_; 54 gfx::Size size_;
55 scoped_ptr<SkBitmap> bitmap_; 55 scoped_ptr<SkBitmap> bitmap_;
56 TextureMailbox texture_mailbox_; 56 TextureMailbox texture_mailbox_;
57 scoped_ptr<SingleReleaseCallback> release_callback_; 57 scoped_ptr<SingleReleaseCallback> release_callback_;
58 }; 58 };
59 59
60 } // namespace cc 60 } // namespace cc
61 61
62 #endif // CC_OUTPUT_COPY_OUTPUT_RESULT_H_ 62 #endif // CC_OUTPUT_COPY_OUTPUT_RESULT_H_
OLDNEW
« no previous file with comments | « cc/output/copy_output_request.h ('k') | cc/output/filter_operations_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698