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

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

Issue 808553007: Move HTMLViewer out of mojo namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix merge mistake in test Created 6 years 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/webcookiejar_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.cc
diff --git a/mojo/services/html_viewer/webcookiejar_impl.cc b/mojo/services/html_viewer/webcookiejar_impl.cc
index 0d864801edaabb2b472ebfd1e24fa25b393238b3..0b4b01231ece7234aa0c38cdb5c7ef26e3d823b8 100644
--- a/mojo/services/html_viewer/webcookiejar_impl.cc
+++ b/mojo/services/html_viewer/webcookiejar_impl.cc
@@ -7,7 +7,9 @@
#include "base/bind.h"
#include "third_party/WebKit/public/platform/WebURL.h"
-namespace mojo {
+using mojo::String;
+
+namespace html_viewer {
namespace {
void CopyBool(bool* output, bool input) {
@@ -20,7 +22,7 @@ void CopyString(String* output, const String& input) {
} // namespace
-WebCookieJarImpl::WebCookieJarImpl(CookieStorePtr store)
+WebCookieJarImpl::WebCookieJarImpl(mojo::CookieStorePtr store)
: store_(store.Pass()) {
}
@@ -66,4 +68,4 @@ blink::WebString WebCookieJarImpl::cookieRequestHeaderFieldValue(
return cookies(url, first_party_for_cookies);
}
-} // namespace mojo
+} // namespace html_viewer
« no previous file with comments | « mojo/services/html_viewer/webcookiejar_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