summaryrefslogtreecommitdiffstats
path: root/skia
diff options
context:
space:
mode:
authortorne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-06 17:04:54 +0000
committertorne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-06 17:04:54 +0000
commit050b11a6b5be574939476a56cf6dbd5c3432b08d (patch)
tree6558ad6546cf78cb954fceb51a642339e659152e /skia
parentffde53bee1858e9e25164cf7339b9cd04b0eb4b7 (diff)
downloadchromium_src-050b11a6b5be574939476a56cf6dbd5c3432b08d.zip
chromium_src-050b11a6b5be574939476a56cf6dbd5c3432b08d.tar.gz
chromium_src-050b11a6b5be574939476a56cf6dbd5c3432b08d.tar.bz2
Fully qualify includes in skia ext/ code.
Use full pathnames to refer to skia includes in skia/ext/lazy_pixel_ref_utils.cc to match all the other code in skia/ext. BUG= Review URL: https://chromiumcodereview.appspot.com/22407002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215909 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r--skia/ext/lazy_pixel_ref_utils.cc25
1 files changed, 12 insertions, 13 deletions
diff --git a/skia/ext/lazy_pixel_ref_utils.cc b/skia/ext/lazy_pixel_ref_utils.cc
index ad2be7d..67371c9 100644
--- a/skia/ext/lazy_pixel_ref_utils.cc
+++ b/skia/ext/lazy_pixel_ref_utils.cc
@@ -2,19 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "lazy_pixel_ref_utils.h"
-
-#include "SkCanvas.h"
-#include "SkData.h"
-#include "SkDevice.h"
-#include "SkDraw.h"
-#include "SkPixelRef.h"
-#include "SkRRect.h"
-#include "SkRasterClip.h"
-#include "SkRect.h"
-#include "SkShader.h"
-
-#include "lazy_pixel_ref.h"
+#include "skia/ext/lazy_pixel_ref_utils.h"
+
+#include "skia/ext/lazy_pixel_ref.h"
+#include "third_party/skia/include/core/SkCanvas.h"
+#include "third_party/skia/include/core/SkData.h"
+#include "third_party/skia/include/core/SkDevice.h"
+#include "third_party/skia/include/core/SkDraw.h"
+#include "third_party/skia/include/core/SkPixelRef.h"
+#include "third_party/skia/include/core/SkRRect.h"
+#include "third_party/skia/include/core/SkRect.h"
+#include "third_party/skia/include/core/SkShader.h"
+#include "third_party/skia/src/core/SkRasterClip.h"
namespace skia {