summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/web/PageOverlay.cpp
diff options
context:
space:
mode:
authoryutak@chromium.org <yutak@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-04-24 07:22:44 +0000
committeryutak@chromium.org <yutak@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2014-04-24 07:22:44 +0000
commite6ee61d4fa6a188d87ead4717d39f2d2e6276258 (patch)
tree5a9fcc203ccfb60eadd7db82f33101a0393b1c37 /third_party/WebKit/Source/web/PageOverlay.cpp
parent062db846db0d7e8d14ce064ac89d89f0103f936c (diff)
downloadchromium_src-e6ee61d4fa6a188d87ead4717d39f2d2e6276258.zip
chromium_src-e6ee61d4fa6a188d87ead4717d39f2d2e6276258.tar.gz
chromium_src-e6ee61d4fa6a188d87ead4717d39f2d2e6276258.tar.bz2
Fix relative #includes in Source/web.
This patch adds the "+web" rule in Source/web/DEPS, and fixes relative #includes to the headers in Source/web. As a side effect, this patch fixes the sorting order of headers as well. Note that most of files were converted automatically with my bash script, but I had to manually fix a couple of files: painting/PaintAggregator.cpp and DragClientImpl.cpp. BUG=none Review URL: https://codereview.chromium.org/259443003 git-svn-id: svn://svn.chromium.org/blink/trunk@172463 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/Source/web/PageOverlay.cpp')
-rw-r--r--third_party/WebKit/Source/web/PageOverlay.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/WebKit/Source/web/PageOverlay.cpp b/third_party/WebKit/Source/web/PageOverlay.cpp
index 79aed36..261b86d 100644
--- a/third_party/WebKit/Source/web/PageOverlay.cpp
+++ b/third_party/WebKit/Source/web/PageOverlay.cpp
@@ -27,16 +27,16 @@
*/
#include "config.h"
-#include "PageOverlay.h"
+#include "web/PageOverlay.h"
#include "WebPageOverlay.h"
#include "WebViewClient.h"
-#include "WebViewImpl.h"
-#include "core/page/Page.h"
#include "core/frame/Settings.h"
+#include "core/page/Page.h"
#include "platform/graphics/GraphicsLayer.h"
#include "platform/graphics/GraphicsLayerClient.h"
#include "public/platform/WebLayer.h"
+#include "web/WebViewImpl.h"
using namespace WebCore;