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

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

Issue 1090953002: Small cleanups in the Mojo HTML viewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « mojo/services/html_viewer/webclipboard_impl.cc ('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 ac53e21e0862147c19dc8c0127bd4ccac1e7cea8..052a45fb7e366ed7129c7cb75a45c437c004d588 100644
--- a/mojo/services/html_viewer/webcookiejar_impl.h
+++ b/mojo/services/html_viewer/webcookiejar_impl.h
@@ -16,15 +16,15 @@ class WebCookieJarImpl : public blink::WebCookieJar {
virtual ~WebCookieJarImpl();
// blink::WebCookieJar methods:
- void setCookie(const blink::WebURL& url,
- const blink::WebURL& first_party_for_cookies,
- const blink::WebString& cookie) override;
- blink::WebString cookies(
+ virtual void setCookie(const blink::WebURL& url,
+ const blink::WebURL& first_party_for_cookies,
+ const blink::WebString& cookie);
+ virtual blink::WebString cookies(
const blink::WebURL& url,
- const blink::WebURL& first_party_for_cookies) override;
- blink::WebString cookieRequestHeaderFieldValue(
+ const blink::WebURL& first_party_for_cookies);
+ virtual blink::WebString cookieRequestHeaderFieldValue(
const blink::WebURL& url,
- const blink::WebURL& first_party_for_cookies) override;
+ const blink::WebURL& first_party_for_cookies);
private:
mojo::CookieStorePtr store_;
« no previous file with comments | « mojo/services/html_viewer/webclipboard_impl.cc ('k') | mojo/services/html_viewer/weblayertreeview_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698