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

Side by Side Diff: chrome/renderer/safe_browsing/phishing_classifier.cc

Issue 23658056: content: Move kHttpScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/safe_browsing/phishing_classifier.h" 5 #include "chrome/renderer/safe_browsing/phishing_classifier.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 WebKit::WebFrame* frame = web_view->mainFrame(); 112 WebKit::WebFrame* frame = web_view->mainFrame();
113 if (!frame) { 113 if (!frame) {
114 RunFailureCallback(); 114 RunFailureCallback();
115 return; 115 return;
116 } 116 }
117 117
118 // Check whether the URL is one that we should classify. 118 // Check whether the URL is one that we should classify.
119 // Currently, we only classify http: URLs that are GET requests. 119 // Currently, we only classify http: URLs that are GET requests.
120 GURL url(frame->document().url()); 120 GURL url(frame->document().url());
121 if (!url.SchemeIs(chrome::kHttpScheme)) { 121 if (!url.SchemeIs(content::kHttpScheme)) {
122 RunFailureCallback(); 122 RunFailureCallback();
123 return; 123 return;
124 } 124 }
125 125
126 WebKit::WebDataSource* ds = frame->dataSource(); 126 WebKit::WebDataSource* ds = frame->dataSource();
127 if (!ds || !EqualsASCII(ds->request().httpMethod(), "GET")) { 127 if (!ds || !EqualsASCII(ds->request().httpMethod(), "GET")) {
128 RunFailureCallback(); 128 RunFailureCallback();
129 return; 129 return;
130 } 130 }
131 131
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 RunCallback(verdict); 232 RunCallback(verdict);
233 } 233 }
234 234
235 void PhishingClassifier::Clear() { 235 void PhishingClassifier::Clear() {
236 page_text_ = NULL; 236 page_text_ = NULL;
237 done_callback_.Reset(); 237 done_callback_.Reset();
238 features_.reset(NULL); 238 features_.reset(NULL);
239 } 239 }
240 240
241 } // namespace safe_browsing 241 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/user_script_slave.cc ('k') | chrome/utility/importer/ie_importer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698