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

Unified Diff: chrome/browser/chromeos/web_socket_proxy.cc

Issue 10694060: browser: Move more files into chrome namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « no previous file | chrome/browser/event_disposition.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/web_socket_proxy.cc
diff --git a/chrome/browser/chromeos/web_socket_proxy.cc b/chrome/browser/chromeos/web_socket_proxy.cc
index bfdbcb42ef060cf855afb6f7fc6fb9cac0d9e807..0eecd1d885893e7b1a3d6626880ec6de004aadb0 100644
--- a/chrome/browser/chromeos/web_socket_proxy.cc
+++ b/chrome/browser/chromeos/web_socket_proxy.cc
@@ -1270,7 +1270,7 @@ Conn::Status Conn::ConsumeHeader(struct evbuffer* evb) {
FetchExtensionIdFromOrigin(GetOrigin());
std::string passport(requested_parameters_["passport"]);
requested_parameters_.erase("passport");
- if (!browser::InternalAuthVerification::VerifyPassport(
+ if (!chrome::InternalAuthVerification::VerifyPassport(
passport, "web_socket_proxy", requested_parameters_)) {
return STATUS_ABORT;
}
@@ -1362,7 +1362,7 @@ Conn::Status Conn::ConsumeDestframe(struct evbuffer* evb) {
map["extension_id"] = FetchExtensionIdFromOrigin(GetOrigin());
if (!destaddr_.empty())
map["addr"] = destaddr_;
- if (!browser::InternalAuthVerification::VerifyPassport(
+ if (!chrome::InternalAuthVerification::VerifyPassport(
passport, "web_socket_proxy", map)) {
return STATUS_ABORT;
}
« no previous file with comments | « no previous file | chrome/browser/event_disposition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698