Index: components/component_updater/test/test_configurator.h |
diff --git a/components/component_updater/test/test_configurator.h b/components/component_updater/test/test_configurator.h |
index 7afa918412df9fed176750a426293b2fa47b4e39..d4f2787537c346f152bd760889790d09b2c099ed 100644 |
--- a/components/component_updater/test/test_configurator.h |
+++ b/components/component_updater/test/test_configurator.h |
@@ -7,6 +7,7 @@ |
#include <string> |
#include <utility> |
+#include <vector> |
#include "base/basictypes.h" |
#include "base/callback.h" |
@@ -14,6 +15,7 @@ |
#include "base/memory/ref_counted.h" |
#include "components/component_updater/component_updater_configurator.h" |
#include "net/url_request/url_request_test_util.h" |
+#include "url/gurl.h" |
namespace component_updater { |
@@ -37,8 +39,8 @@ class TestConfigurator : public Configurator { |
virtual int StepDelayMedium() OVERRIDE; |
virtual int MinimumReCheckWait() const OVERRIDE; |
virtual int OnDemandDelay() const OVERRIDE; |
- virtual GURL UpdateUrl() const OVERRIDE; |
- virtual GURL PingUrl() const OVERRIDE; |
+ virtual std::vector<GURL> UpdateUrl() const OVERRIDE; |
erikwright (departed)
2014/09/15 18:46:54
forward-decl should suffice.
Sorin Jianu
2014/09/15 22:17:57
Done.
|
+ virtual std::vector<GURL> PingUrl() const OVERRIDE; |
virtual base::Version GetBrowserVersion() const OVERRIDE; |
virtual std::string GetChannel() const OVERRIDE; |
virtual std::string GetLang() const OVERRIDE; |
@@ -55,7 +57,6 @@ class TestConfigurator : public Configurator { |
virtual scoped_refptr<base::SingleThreadTaskRunner> |
GetSingleThreadTaskRunner() const OVERRIDE; |
- typedef std::pair<CrxComponent*, int> CheckAtLoopCount; |
void SetLoopCount(int times); |
void SetRecheckTime(int seconds); |
void SetOnDemandTime(int seconds); |