• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_MOBILE_EMULATION_OVERRIDE_MANAGER_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_MOBILE_EMULATION_OVERRIDE_MANAGER_H_
7 
8 #include <string>
9 
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h"
14 
15 namespace base {
16 class DictionaryValue;
17 }
18 
19 class DevToolsClient;
20 struct DeviceMetrics;
21 class Status;
22 
23 // Overrides the device metrics, if requested, for the duration of the
24 // given |DevToolsClient|'s lifetime.
25 class MobileEmulationOverrideManager : public DevToolsEventListener {
26  public:
27   MobileEmulationOverrideManager(DevToolsClient* client,
28                                  const DeviceMetrics* device_metrics);
29   virtual ~MobileEmulationOverrideManager();
30 
31   // Overridden from DevToolsEventListener:
32   virtual Status OnConnected(DevToolsClient* client) OVERRIDE;
33   virtual Status OnEvent(DevToolsClient* client,
34                          const std::string& method,
35                          const base::DictionaryValue& params) OVERRIDE;
36 
37  private:
38   Status ApplyOverrideIfNeeded();
39 
40   DevToolsClient* client_;
41   const DeviceMetrics* overridden_device_metrics_;
42 
43   DISALLOW_COPY_AND_ASSIGN(MobileEmulationOverrideManager);
44 };
45 
46 #endif  // CHROME_TEST_CHROMEDRIVER_CHROME_MOBILE_EMULATION_OVERRIDE_MANAGER_H_
47