From: Seungkeun Lee Date: Mon, 21 Sep 2015 01:18:06 +0000 (+0900) Subject: Fix namespace related error X-Git-Tag: accepted/tizen/mobile/20150922.000918~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e8c40e15408c5231e3406a993e10557db362933;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Fix namespace related error - common:: namsespace was required --- diff --git a/runtime/browser/web_application.cc b/runtime/browser/web_application.cc index 3d6e50a..446ec8d 100755 --- a/runtime/browser/web_application.cc +++ b/runtime/browser/web_application.cc @@ -188,18 +188,18 @@ static bool ClearCookie(Ewk_Context* ewk_context) { } static bool ProcessWellKnownScheme(const std::string& url) { - if (utils::StartsWith(url, "file:") || - utils::StartsWith(url, "app:") || - utils::StartsWith(url, "data:") || - utils::StartsWith(url, "http:") || - utils::StartsWith(url, "https:") || - utils::StartsWith(url, "widget:") || - utils::StartsWith(url, "about:") || - utils::StartsWith(url, "blob:")) { + if (common::utils::StartsWith(url, "file:") || + common::utils::StartsWith(url, "app:") || + common::utils::StartsWith(url, "data:") || + common::utils::StartsWith(url, "http:") || + common::utils::StartsWith(url, "https:") || + common::utils::StartsWith(url, "widget:") || + common::utils::StartsWith(url, "about:") || + common::utils::StartsWith(url, "blob:")) { return false; } - std::unique_ptr request(AppControl::MakeAppcontrolFromURL(url)); + std::unique_ptr request(common::AppControl::MakeAppcontrolFromURL(url)); if (request.get() == NULL || !request->LaunchRequest()) { LOGGER(ERROR) << "Fail to send appcontrol request"; SLoggerE("Fail to send appcontrol request [%s]", url.c_str());