From 5e8c40e15408c5231e3406a993e10557db362933 Mon Sep 17 00:00:00 2001 From: Seungkeun Lee Date: Mon, 21 Sep 2015 10:18:06 +0900 Subject: [PATCH] Fix namespace related error - common:: namsespace was required --- runtime/browser/web_application.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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()); -- 2.7.4