Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: content/child/web_url_loader_impl.h

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/npapi/plugin_url_fetcher.cc ('k') | content/child/web_url_loader_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/web_url_loader_impl.h
diff --git a/content/child/web_url_loader_impl.h b/content/child/web_url_loader_impl.h
index 8c1447b2a5ecc6899090d2a5d8abaf572335a76f..9d85d06a152442ba8dc600968f190d8c49ec7560 100644
--- a/content/child/web_url_loader_impl.h
+++ b/content/child/web_url_loader_impl.h
@@ -38,7 +38,7 @@ class CONTENT_EXPORT WebURLLoaderImpl
explicit WebURLLoaderImpl(
ResourceDispatcher* resource_dispatcher,
scoped_refptr<base::SingleThreadTaskRunner> task_runner);
- virtual ~WebURLLoaderImpl();
+ ~WebURLLoaderImpl() override;
static void PopulateURLResponse(
const GURL& url,
@@ -46,19 +46,19 @@ class CONTENT_EXPORT WebURLLoaderImpl
blink::WebURLResponse* response);
// WebURLLoader methods:
- virtual void loadSynchronously(
+ void loadSynchronously(
const blink::WebURLRequest& request,
blink::WebURLResponse& response,
blink::WebURLError& error,
blink::WebData& data) override;
- virtual void loadAsynchronously(
+ void loadAsynchronously(
const blink::WebURLRequest& request,
blink::WebURLLoaderClient* client) override;
- virtual void cancel() override;
- virtual void setDefersLoading(bool value) override;
- virtual void didChangePriority(blink::WebURLRequest::Priority new_priority,
- int intra_priority_value) override;
- virtual bool attachThreadedDataReceiver(
+ void cancel() override;
+ void setDefersLoading(bool value) override;
+ void didChangePriority(blink::WebURLRequest::Priority new_priority,
+ int intra_priority_value) override;
+ bool attachThreadedDataReceiver(
blink::WebThreadedDataReceiver* threaded_data_receiver) override;
private:
« no previous file with comments | « content/child/npapi/plugin_url_fetcher.cc ('k') | content/child/web_url_loader_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698