blob: 0f5f3f64f25771c76f89326355f9362495079b71 [file] [log] [blame]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_TEST_CHROMEDRIVER_CHROME_GEOLOCATION_OVERRIDE_MANAGER_H_
#define CHROME_TEST_CHROMEDRIVER_CHROME_GEOLOCATION_OVERRIDE_MANAGER_H_
#include <memory>
#include <string>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "chrome/test/chromedriver/chrome/devtools_event_listener.h"
namespace base {
class DictionaryValue;
}
class DevToolsClient;
struct Geoposition;
class Status;
// Overrides the geolocation, if requested, for the duration of the
// given |DevToolsClient|'s lifetime.
class GeolocationOverrideManager : public DevToolsEventListener {
public:
explicit GeolocationOverrideManager(DevToolsClient* client);
~GeolocationOverrideManager() override;
Status OverrideGeolocation(const Geoposition& geoposition);
// Overridden from DevToolsEventListener:
Status OnConnected(DevToolsClient* client) override;
Status OnEvent(DevToolsClient* client,
const std::string& method,
const base::DictionaryValue& params) override;
private:
Status ApplyOverrideIfNeeded();
DevToolsClient* client_;
std::unique_ptr<Geoposition> overridden_geoposition_;
DISALLOW_COPY_AND_ASSIGN(GeolocationOverrideManager);
};
#endif // CHROME_TEST_CHROMEDRIVER_CHROME_GEOLOCATION_OVERRIDE_MANAGER_H_