Refactoring proxy, part 2

This commit is contained in:
bao-qian
2016-06-19 16:18:43 +01:00
parent 764a372e9f
commit 3efeb4a0a6
41 changed files with 98 additions and 146 deletions

View File

@@ -19,7 +19,7 @@ namespace Wox.Plugin.WebSearch.SuggestionSources
try
{
const string api = "https://www.google.com/complete/search?output=chrome&q=";
result = await Http.Get(api + Uri.EscapeUriString(query), Proxy);
result = await Http.Get(api + Uri.EscapeUriString(query));
}
catch (WebException e)
{
@@ -48,9 +48,5 @@ namespace Wox.Plugin.WebSearch.SuggestionSources
}
return new List<string>();
}
public Google(IHttpProxy httpProxy) : base(httpProxy)
{
}
}
}