diff options
author | Ken Rockot <rockot@chromium.org> | 2015-11-11 14:24:06 -0800 |
---|---|---|
committer | Ken Rockot <rockot@chromium.org> | 2015-11-11 22:26:07 +0000 |
commit | f2bfe56ff56152e21033992105c31437a3b150fe (patch) | |
tree | 8e81f342ef2cb5c53ee1f249ebfcb349eab5f1b4 /components/pdf_viewer | |
parent | d23c3995cd1439bc28a1254a9e8ff850c833fbf2 (diff) | |
download | chromium_src-f2bfe56ff56152e21033992105c31437a3b150fe.zip chromium_src-f2bfe56ff56152e21033992105c31437a3b150fe.tar.gz chromium_src-f2bfe56ff56152e21033992105c31437a3b150fe.tar.bz2 |
Eliminate third_party/mojo/src from all targets' include paths
Eliding presubmit here because the missing DEPS entries are going to be addressed here: https://codereview.chromium.org/1410053006
BUG=554556
R=jam@chromium.org
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/1435063002 .
Cr-Commit-Position: refs/heads/master@{#359174}
Diffstat (limited to 'components/pdf_viewer')
-rw-r--r-- | components/pdf_viewer/DEPS | 1 | ||||
-rw-r--r-- | components/pdf_viewer/pdf_viewer.cc | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/components/pdf_viewer/DEPS b/components/pdf_viewer/DEPS index d6857af..e85458b 100644 --- a/components/pdf_viewer/DEPS +++ b/components/pdf_viewer/DEPS @@ -9,6 +9,7 @@ include_rules = [ "+mojo/converters/surfaces", "+mojo/public", "+mojo/services/tracing/public/cpp", + "+third_party/mojo/src/mojo/public", "+third_party/pdfium/public", "+ui/gfx/geometry", "+ui/mojo", diff --git a/components/pdf_viewer/pdf_viewer.cc b/components/pdf_viewer/pdf_viewer.cc index dcc5f93..bb983b7 100644 --- a/components/pdf_viewer/pdf_viewer.cc +++ b/components/pdf_viewer/pdf_viewer.cc @@ -26,9 +26,9 @@ #include "mojo/application/public/interfaces/content_handler.mojom.h" #include "mojo/application/public/interfaces/shell.mojom.h" #include "mojo/common/data_pipe_utils.h" -#include "mojo/public/c/system/main.h" -#include "mojo/public/cpp/bindings/binding.h" #include "mojo/services/tracing/public/cpp/tracing_impl.h" +#include "third_party/mojo/src/mojo/public/c/system/main.h" +#include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" #include "third_party/pdfium/public/fpdf_ext.h" #include "third_party/pdfium/public/fpdfview.h" #include "ui/gfx/geometry/rect.h" |