Remove invalid TODO
authorJongHeon Choi <j-h.choi@samsung.com>
Wed, 31 Aug 2016 04:38:05 +0000 (13:38 +0900)
committerJongHeon Choi <j-h.choi@samsung.com>
Thu, 1 Sep 2016 04:48:32 +0000 (13:48 +0900)
Change-Id: I5c4384479f2372ac7f0787aab7c43626d92ed9e3

runtime/browser/vibration_manager.h
runtime/browser/web_application.cc

index e432fcd..2269da2 100755 (executable)
@@ -17,7 +17,6 @@
 #ifndef XWALK_RUNTIME_BROWSER_VIBRATION_MANAGER_H_
 #define XWALK_RUNTIME_BROWSER_VIBRATION_MANAGER_H_
 
-// TODO(sngn.lee): this class will move to src/platform/ directory
 namespace runtime {
 namespace platform {
 class VibrationManager {
index ef09759..31a3ed8 100644 (file)
@@ -52,7 +52,6 @@
 namespace runtime {
 
 namespace {
-// TODO(sngn.lee) : It should be declare in common header
 const char* kKeyNameBack = "back";
 const char* kKeyNameMenu = "menu";
 
@@ -363,12 +362,6 @@ bool WebApplication::Initialize() {
         app_data_->widget_info()->default_locale());
   }
 
-  // TODO(sngn.lee): Find the path of certificate file
-  // ewk_context_certificate_file_set(ewk_context_, .... );
-
-  // TODO(sngn.lee): find the proxy url
-  // ewk_context_proxy_uri_set(ewk_context_, ... );
-
   if (app_data_->csp_info() != NULL || app_data_->csp_report_info() != NULL ||
       app_data_->allowed_navigation_info() != NULL) {
     security_model_version_ = 2;
@@ -657,7 +650,6 @@ void WebApplication::OnOrientationLock(
       app_data_->setting_info() != NULL
           ? app_data_->setting_info()->screen_orientation()
           :
-          // TODO(sngn.lee): check default value
           wgt::parse::SettingInfo::ScreenOrientation::AUTO;
   if (orientaion_setting != wgt::parse::SettingInfo::ScreenOrientation::AUTO) {
     return;
@@ -871,8 +863,6 @@ void WebApplication::SetupWebView(WebView* view) {
       view->SetCSPRule(csp_report_rule_, true);
     }
   }
-
-  // TODO(sngn.lee): set UserAgent to WebView
 }
 
 bool WebApplication::OnDidNavigation(WebView* /*view*/,