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

Unified Diff: src/plugin/PluginUserSettings.h

Issue 5979857238360064: Issues #1163, #1173 - refactor CPluginUserSettings (Closed)
Patch Set: rebase + add one final space character Created Feb. 23, 2015, 1:37 p.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
« no previous file with comments | « no previous file | src/plugin/PluginUserSettings.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/PluginUserSettings.h
===================================================================
--- a/src/plugin/PluginUserSettings.h
+++ b/src/plugin/PluginUserSettings.h
@@ -14,11 +14,10 @@
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef PLUGIN_USER_SETTINGS_H
+#define PLUGIN_USER_SETTINGS_H
-#pragma once
-
-#include <vector>
-#include <utility>
+#include <OAIdl.h>
/*
Class is used to call methods Get,Set,Update of Settings object from JavaScript.
@@ -28,8 +27,6 @@
class CPluginUserSettings: public IDispatch
{
public:
- CPluginUserSettings();
-
// IUnknown
STDMETHOD(QueryInterface)(REFIID riid, void **ppvObj);
ULONG __stdcall AddRef();
@@ -42,3 +39,5 @@
STDMETHOD(Invoke)(DISPID dispidMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS* pDispparams, VARIANT* pVarResult,
EXCEPINFO* pExcepinfo, UINT* pArgErr);
};
+
+#endif
« no previous file with comments | « no previous file | src/plugin/PluginUserSettings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld