| Index: content/renderer/render_frame_impl.cc
|
| diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
|
| index eda764382968862dc1c968cbffb2679c979520a4..0f43da2b1ae42e6578d84dcc3ce0b7d2ba25feab 100644
|
| --- a/content/renderer/render_frame_impl.cc
|
| +++ b/content/renderer/render_frame_impl.cc
|
| @@ -148,8 +148,6 @@
|
| #include "third_party/WebKit/public/web/WebSurroundingText.h"
|
| #include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
|
| #include "third_party/WebKit/public/web/WebView.h"
|
| -#include "third_party/mojo/src/mojo/edk/js/core.h"
|
| -#include "third_party/mojo/src/mojo/edk/js/support.h"
|
| #include "url/url_util.h"
|
|
|
| #if defined(ENABLE_PLUGINS)
|
| @@ -199,6 +197,14 @@
|
| #include "content/renderer/vr/vr_dispatcher.h"
|
| #endif
|
|
|
| +#if defined(USE_CHROME_EDK)
|
| +#include "mojo/edk/js/core.h"
|
| +#include "mojo/edk/js/support.h"
|
| +#else
|
| +#include "third_party/mojo/src/mojo/edk/js/core.h"
|
| +#include "third_party/mojo/src/mojo/edk/js/support.h"
|
| +#endif
|
| +
|
| using blink::WebContentDecryptionModule;
|
| using blink::WebContextMenuData;
|
| using blink::WebData;
|
|
|