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

Unified Diff: src/plugin/AdblockPlusClient.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/plugin/AdblockPlusClient.cpp
===================================================================
--- a/src/plugin/AdblockPlusClient.cpp
+++ b/src/plugin/AdblockPlusClient.cpp
@@ -417,3 +417,28 @@
else
return defaultValue;
}
+
+void CAdblockPlusClient::CheckForUpdates()
+{
+ CallEngine(Communication::PROC_CHECK_FOR_UPDATES);
+}
+
+std::wstring CAdblockPlusClient::GetAppLocale()
+{
+ Communication::InputBuffer response;
+ if (!CallEngine(Communication::PROC_GET_APP_LOCALE, response))
+ return L"";
+ std::wstring locale;
+ response >> locale;
+ return locale;
+}
+
+std::wstring CAdblockPlusClient::GetDocumentationLink()
+{
+ Communication::InputBuffer response;
+ if (!CallEngine(Communication::PROC_GET_DOCUMENTATION_LINK, response))
+ return L"";
+ std::wstring docLink;
+ response >> docLink;
+ return docLink;
+}

Powered by Google App Engine
This is Rietveld