| Index: content/browser/fileapi/file_system_url_request_job_unittest.cc
|
| diff --git a/content/browser/fileapi/file_system_url_request_job_unittest.cc b/content/browser/fileapi/file_system_url_request_job_unittest.cc
|
| index 19f5614a5175bb04f84f0915ab71e98c59cebd59..5f8c0cd261c16ff536b29e913c31467cf18489df 100644
|
| --- a/content/browser/fileapi/file_system_url_request_job_unittest.cc
|
| +++ b/content/browser/fileapi/file_system_url_request_job_unittest.cc
|
| @@ -89,7 +89,7 @@ class FileSystemURLRequestJobFactory : public net::URLRequestJobFactory {
|
| : storage_domain_(storage_domain), file_system_context_(context) {
|
| }
|
|
|
| - virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler(
|
| + net::URLRequestJob* MaybeCreateJobWithProtocolHandler(
|
| const std::string& scheme,
|
| net::URLRequest* request,
|
| net::NetworkDelegate* network_delegate) const override {
|
| @@ -97,15 +97,13 @@ class FileSystemURLRequestJobFactory : public net::URLRequestJobFactory {
|
| request, network_delegate, storage_domain_, file_system_context_);
|
| }
|
|
|
| - virtual bool IsHandledProtocol(const std::string& scheme) const override {
|
| + bool IsHandledProtocol(const std::string& scheme) const override {
|
| return true;
|
| }
|
|
|
| - virtual bool IsHandledURL(const GURL& url) const override {
|
| - return true;
|
| - }
|
| + bool IsHandledURL(const GURL& url) const override { return true; }
|
|
|
| - virtual bool IsSafeRedirectTarget(const GURL& location) const override {
|
| + bool IsSafeRedirectTarget(const GURL& location) const override {
|
| return false;
|
| }
|
|
|
|
|