| Index: chrome/browser/prerender/prerender_browsertest.cc
|
| diff --git a/chrome/browser/prerender/prerender_browsertest.cc b/chrome/browser/prerender/prerender_browsertest.cc
|
| index 0b86363e7edeb56ad5083a1105e3e5c14d36729f..7e1edf9552e4b7eb5eedf553403f9a032f4ed77b 100644
|
| --- a/chrome/browser/prerender/prerender_browsertest.cc
|
| +++ b/chrome/browser/prerender/prerender_browsertest.cc
|
| @@ -386,8 +386,6 @@ class FakeSafeBrowsingService : public SafeBrowsingService {
|
| FakeSafeBrowsingService() :
|
| result_(SAFE) {}
|
|
|
| - virtual ~FakeSafeBrowsingService() {}
|
| -
|
| // Called on the IO thread to check if the given url is safe or not. If we
|
| // can synchronously determine that the url is safe, CheckUrl returns true.
|
| // Otherwise it returns false, and "client" is called asynchronously with the
|
| @@ -414,6 +412,8 @@ class FakeSafeBrowsingService : public SafeBrowsingService {
|
| }
|
|
|
| private:
|
| + virtual ~FakeSafeBrowsingService() {}
|
| +
|
| void OnCheckBrowseURLDone(const GURL& gurl, Client* client) {
|
| SafeBrowsingService::SafeBrowsingCheck check;
|
| check.urls.push_back(gurl);
|
|
|