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

Side by Side Diff: core/fxge/skia/fx_skia_device.cpp

Issue 2377393002: Move core/fxge/include to core/fxge (Closed)
Patch Set: Rebase to master Created 4 years, 2 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
« no previous file with comments | « core/fxge/skia/fx_skia_device.h ('k') | core/fxge/skia/fx_skia_device_unittest.cpp » ('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 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium 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 #if defined(_SKIA_SUPPORT_) 5 #if defined(_SKIA_SUPPORT_)
6 #include <algorithm> 6 #include <algorithm>
7 #include <vector> 7 #include <vector>
8 8
9 #include "core/fxcodec/fx_codec.h" 9 #include "core/fxcodec/fx_codec.h"
10 #include "core/fxcrt/fx_memory.h" 10 #include "core/fxcrt/fx_memory.h"
11 11
12 #include "core/fpdfapi/fpdf_page/cpdf_shadingpattern.h" 12 #include "core/fpdfapi/fpdf_page/cpdf_shadingpattern.h"
13 #include "core/fpdfapi/fpdf_page/pageint.h" 13 #include "core/fpdfapi/fpdf_page/pageint.h"
14 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 14 #include "core/fpdfapi/fpdf_parser/cpdf_array.h"
15 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 15 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h"
16 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" 16 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h"
17 #include "core/fxge/include/cfx_fxgedevice.h" 17 #include "core/fxge/cfx_fxgedevice.h"
18 #include "core/fxge/include/cfx_gemodule.h" 18 #include "core/fxge/cfx_gemodule.h"
19 #include "core/fxge/include/cfx_graphstatedata.h" 19 #include "core/fxge/cfx_graphstatedata.h"
20 #include "core/fxge/include/cfx_pathdata.h" 20 #include "core/fxge/cfx_pathdata.h"
21 #include "core/fxge/include/cfx_renderdevice.h" 21 #include "core/fxge/cfx_renderdevice.h"
22 #include "core/fxge/skia/fx_skia_device.h" 22 #include "core/fxge/skia/fx_skia_device.h"
23 23
24 #include "third_party/skia/include/core/SkCanvas.h" 24 #include "third_party/skia/include/core/SkCanvas.h"
25 #include "third_party/skia/include/core/SkColorFilter.h" 25 #include "third_party/skia/include/core/SkColorFilter.h"
26 #include "third_party/skia/include/core/SkColorPriv.h" 26 #include "third_party/skia/include/core/SkColorPriv.h"
27 #include "third_party/skia/include/core/SkMaskFilter.h" 27 #include "third_party/skia/include/core/SkMaskFilter.h"
28 #include "third_party/skia/include/core/SkPaint.h" 28 #include "third_party/skia/include/core/SkPaint.h"
29 #include "third_party/skia/include/core/SkPath.h" 29 #include "third_party/skia/include/core/SkPath.h"
30 #include "third_party/skia/include/core/SkPictureRecorder.h" 30 #include "third_party/skia/include/core/SkPictureRecorder.h"
31 #include "third_party/skia/include/core/SkShader.h" 31 #include "third_party/skia/include/core/SkShader.h"
(...skipping 1640 matching lines...) Expand 10 before | Expand all | Expand 10 after
1672 SkA32Assert(a); 1672 SkA32Assert(a);
1673 SkASSERT(r <= a); 1673 SkASSERT(r <= a);
1674 SkASSERT(g <= a); 1674 SkASSERT(g <= a);
1675 SkASSERT(b <= a); 1675 SkASSERT(b <= a);
1676 } 1676 }
1677 } 1677 }
1678 #endif 1678 #endif
1679 } 1679 }
1680 1680
1681 #endif 1681 #endif
OLDNEW
« no previous file with comments | « core/fxge/skia/fx_skia_device.h ('k') | core/fxge/skia/fx_skia_device_unittest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698