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

Unified Diff: src/plugin/PluginUserSettings.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/PluginUserSettings.cpp
===================================================================
--- a/src/plugin/PluginUserSettings.cpp
+++ b/src/plugin/PluginUserSettings.cpp
@@ -14,8 +14,10 @@
static const CString s_GetWhitelistDomains = L"GetWhitelistDomains";
static const CString s_AddWhitelistDomain = L"AddWhitelistDomain";
static const CString s_RemoveWhitelistDomain = L"RemoveWhitelistDomain";
+static const CString s_GetAppLocale = L"GetAppLocale";
+static const CString s_GetDocumentationLink = L"GetDocumentationLink";
-static const CString s_Methods[] = {s_GetMessage, s_GetLanguageCount, s_GetLanguageByIndex, s_GetLanguageTitleByIndex, s_SetLanguage, s_GetLanguage, s_GetWhitelistDomains, s_AddWhitelistDomain, s_RemoveWhitelistDomain};
+static const CString s_Methods[] = {s_GetMessage, s_GetLanguageCount, s_GetLanguageByIndex, s_GetLanguageTitleByIndex, s_SetLanguage, s_GetLanguage, s_GetWhitelistDomains, s_AddWhitelistDomain, s_RemoveWhitelistDomain, s_GetAppLocale, s_GetDocumentationLink};
CPluginUserSettings::CPluginUserSettings()
{
@@ -305,6 +307,22 @@
settings->RemoveWhiteListedDomain((BSTR)domain);
}
}
+ else if (s_GetAppLocale == method)
+ {
+ if (0 != pDispparams->cArgs)
+ return DISP_E_BADPARAMCOUNT;
+
+ pVarResult->vt = VT_BSTR;
+ pVarResult->bstrVal = SysAllocString(settings->GetAppLocale());
+ }
+ else if (s_GetDocumentationLink == method)
+ {
+ if (0 != pDispparams->cArgs)
+ return DISP_E_BADPARAMCOUNT;
+
+ pVarResult->vt = VT_BSTR;
+ pVarResult->bstrVal = SysAllocString(settings->GetDocumentationLink());
+ }
else
return DISP_E_MEMBERNOTFOUND;

Powered by Google App Engine
This is Rietveld