Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/engine/main.cpp

Issue 11276031: FRP wrappers. "Update" menu item. (Closed)
Patch Set: Created Aug. 1, 2013, 2:29 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/engine/main.cpp
===================================================================
--- a/src/engine/main.cpp
+++ b/src/engine/main.cpp
@@ -43,6 +43,12 @@
CriticalSection firstRunLock;
bool firstRunActionExecuted = false;
+ void UpdateCallback(const std::string res)
+ {
+ //TODO: Display UI here
+ return;
+ }
+
Communication::OutputBuffer HandleRequest(Communication::InputBuffer& request)
{
Communication::OutputBuffer response;
@@ -224,6 +230,11 @@
}
break;
}
+ case Communication::PROC_CHECK_FOR_UPDATES:
+ {
+ filterEngine->ForceUpdateCheck(UpdateCallback);
+ break;
+ }
case Communication::PROC_IS_FIRST_RUN_ACTION_NEEDED:
{
CriticalSection::Lock lock(firstRunLock);
@@ -238,6 +249,16 @@
}
break;
}
+ case Communication::PROC_GET_APP_LOCALE:
+ {
+ response << ToUtf16String(filterEngine->GetAppLocale());
+ break;
+ }
+ case Communication::PROC_GET_DOCUMENTATION_LINK:
+ {
+ response << ToUtf16String(filterEngine->GetDocumentationLink());
+ break;
+ }
}
return response;

Powered by Google App Engine
This is Rietveld