Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2015 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_NETWORK_CONDITIONS_OVERRIDE_MANAGER_H_ | |
| 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_NETWORK_CONDITIONS_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 NetworkConditions; | |
| 21 class Status; | |
| 22 | |
| 23 // Overrides the network conditions, if requested, for the duration of the | |
| 24 // given |DevToolsClient|'s lifetime. | |
| 25 class NetworkConditionsOverrideManager : public DevToolsEventListener { | |
| 26 public: | |
| 27 explicit NetworkConditionsOverrideManager(DevToolsClient* client); | |
| 28 ~NetworkConditionsOverrideManager() override; | |
| 29 | |
| 30 Status OverrideNetworkConditions(const NetworkConditions& network_conditions); | |
| 31 | |
| 32 // Overridden from DevToolsEventListener: | |
| 33 Status OnConnected(DevToolsClient* client) override; | |
| 34 Status OnEvent(DevToolsClient* client, | |
| 35 const std::string& method, | |
| 36 const base::DictionaryValue& params) override; | |
| 37 | |
| 38 private: | |
| 39 Status ApplyOverrideIfNeeded(); | |
| 40 | |
| 41 DevToolsClient* client_; | |
| 42 scoped_ptr<NetworkConditions> overridden_network_conditions_; | |
|
samuong
2015/02/11 23:22:14
Does NetworkConditionsOverrideManager need to make
srawlins
2015/02/25 22:40:57
Done.
| |
| 43 | |
| 44 DISALLOW_COPY_AND_ASSIGN(NetworkConditionsOverrideManager); | |
| 45 }; | |
| 46 | |
| 47 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_NETWORK_CONDITIONS_OVERRIDE_MANAGER_H _ | |
| OLD | NEW |