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

Unified Diff: mojo/services/html_viewer/webcookiejar_impl.h

Issue 1037363002: Remove unnecessary 'virtual' annotation from mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved merge conflicts Created 5 years, 9 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 | « mojo/services/html_viewer/webclipboard_impl.h ('k') | mojo/services/html_viewer/weblayertreeview_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/html_viewer/webcookiejar_impl.h
diff --git a/mojo/services/html_viewer/webcookiejar_impl.h b/mojo/services/html_viewer/webcookiejar_impl.h
index fdda17286e8a898c833cdbcfcb02784880a6f6f8..ac53e21e0862147c19dc8c0127bd4ccac1e7cea8 100644
--- a/mojo/services/html_viewer/webcookiejar_impl.h
+++ b/mojo/services/html_viewer/webcookiejar_impl.h
@@ -16,16 +16,15 @@ class WebCookieJarImpl : public blink::WebCookieJar {
virtual ~WebCookieJarImpl();
// blink::WebCookieJar methods:
- virtual void setCookie(
+ void setCookie(const blink::WebURL& url,
+ const blink::WebURL& first_party_for_cookies,
+ const blink::WebString& cookie) override;
+ blink::WebString cookies(
const blink::WebURL& url,
- const blink::WebURL& first_party_for_cookies,
- const blink::WebString& cookie);
- virtual blink::WebString cookies(
+ const blink::WebURL& first_party_for_cookies) override;
+ blink::WebString cookieRequestHeaderFieldValue(
const blink::WebURL& url,
- const blink::WebURL& first_party_for_cookies);
- virtual blink::WebString cookieRequestHeaderFieldValue(
- const blink::WebURL& url,
- const blink::WebURL& first_party_for_cookies);
+ const blink::WebURL& first_party_for_cookies) override;
private:
mojo::CookieStorePtr store_;
« no previous file with comments | « mojo/services/html_viewer/webclipboard_impl.h ('k') | mojo/services/html_viewer/weblayertreeview_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698