Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / renderer / safe_browsing / phishing_classifier.cc
index f48e6c1..3f2e98c 100644 (file)
@@ -118,7 +118,7 @@ void PhishingClassifier::BeginFeatureExtraction() {
   // Check whether the URL is one that we should classify.
   // Currently, we only classify http: URLs that are GET requests.
   GURL url(frame->document().url());
-  if (!url.SchemeIs(content::kHttpScheme)) {
+  if (!url.SchemeIs(url::kHttpScheme)) {
     RunFailureCallback();
     return;
   }