Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / api / system_display / system_display_api.cc
index 95074fa..faccf3d 100644 (file)
@@ -24,14 +24,14 @@ namespace SetDisplayProperties = api::system_display::SetDisplayProperties;
 typedef std::vector<linked_ptr<
     api::system_display::DisplayUnitInfo> > DisplayInfo;
 
-bool SystemDisplayGetInfoFunction::RunImpl() {
+bool SystemDisplayGetInfoFunction::RunSync() {
   DisplayInfo all_displays_info =
       DisplayInfoProvider::Get()->GetAllDisplaysInfo();
   results_ = api::system_display::GetInfo::Results::Create(all_displays_info);
   return true;
 }
 
-bool SystemDisplaySetDisplayPropertiesFunction::RunImpl() {
+bool SystemDisplaySetDisplayPropertiesFunction::RunSync() {
 #if !defined(OS_CHROMEOS)
   SetError("Function available only on ChromeOS.");
   return false;