| Index: content/browser/devtools/protocol/emulation_handler.cc
|
| diff --git a/content/browser/devtools/protocol/emulation_handler.cc b/content/browser/devtools/protocol/emulation_handler.cc
|
| index 12c377a4fc84eab5396d2d195ded5158134a463f..aa0d798a4336d7408220b2a0aff252774ae86c21 100644
|
| --- a/content/browser/devtools/protocol/emulation_handler.cc
|
| +++ b/content/browser/devtools/protocol/emulation_handler.cc
|
| @@ -9,17 +9,20 @@
|
| #include "base/strings/string_number_conversions.h"
|
| #include "build/build_config.h"
|
| #include "content/browser/frame_host/render_frame_host_impl.h"
|
| -#include "content/browser/geolocation/geolocation_service_context.h"
|
| #include "content/browser/renderer_host/render_widget_host_impl.h"
|
| #include "content/browser/web_contents/web_contents_impl.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/public/common/url_constants.h"
|
| +#include "device/geolocation/geolocation_service_context.h"
|
| +#include "device/geolocation/geoposition.h"
|
|
|
| namespace content {
|
| namespace devtools {
|
| namespace emulation {
|
|
|
| using Response = DevToolsProtocolClient::Response;
|
| +using GeolocationServiceContext = device::GeolocationServiceContext;
|
| +using Geoposition = device::Geoposition;
|
|
|
| namespace {
|
|
|
|
|