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

Unified Diff: core/src/fxge/skia/fx_skia_device.cpp

Issue 1427633010: Fix relative includes within core/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: IWYU Created 5 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 side-by-side diff with in-line comments
Download patch
Index: core/src/fxge/skia/fx_skia_device.cpp
diff --git a/core/src/fxge/skia/fx_skia_device.cpp b/core/src/fxge/skia/fx_skia_device.cpp
index fcd8e9871e750e98ace61763349890d290f957bc..4d0b94f365f53c26f6595402d874cb0f9b2abe72 100644
--- a/core/src/fxge/skia/fx_skia_device.cpp
+++ b/core/src/fxge/skia/fx_skia_device.cpp
@@ -2,10 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "../../../include/fxge/fx_ge.h"
+#include "core/include/fxge/fx_ge.h"
+
//#define _SKIA_SUPPORT_
Tom Sepez 2015/11/09 21:46:16 nit: remove.
Lei Zhang 2015/11/10 09:27:56 Done.
#if defined(_SKIA_SUPPORT_)
-#include "../../../include/fxcodec/fx_codec.h"
+#include "core/include/fxcodec/fx_codec.h"
//#define _FOXIT_DEBUG_
Tom Sepez 2015/11/09 21:46:16 nitto.
Lei Zhang 2015/11/10 09:27:56 Done.
//#define _FOXIT_BENCHMARK_
Tom Sepez 2015/11/09 21:46:16 ditto nitto.
Lei Zhang 2015/11/10 09:27:56 Done.
@@ -37,9 +38,10 @@ extern int FX_GET_TICK_FUNC();
#include "SkRasterClip.h"
#include "SkStroke.h"
+#include "core/src/fxge/agg/include/fx_agg_driver.h"
#include "fx_skia_blitter_new.h"
-#include "../agg/fx_agg_driver.h"
#include "fx_skia_device.h"
+
/// Run-length-encoded supersampling antialiased blitter.
class SuperBlitter_skia {
public:

Powered by Google App Engine
This is Rietveld 408576698