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

Unified Diff: src/plugin/AdblockPlus.idl

Issue 4937147073167360: Issue 1672 - Subscribe and listen COM events using ATL::IDispEventImpl and BEGIN_SINK_MAP (Closed)
Patch Set: fix accoring to comments without entry point Created Jan. 13, 2015, 11:42 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
« no previous file with comments | « no previous file | src/plugin/PluginClass.h » ('j') | src/plugin/PluginClass.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/AdblockPlus.idl
diff --git a/src/plugin/AdblockPlus.idl b/src/plugin/AdblockPlus.idl
index 67f10826761039db6a28ca527e85dab9e7820149..9f238bc2fb2d0ecca5792d0a4da30a14d5d1c130 100644
--- a/src/plugin/AdblockPlus.idl
+++ b/src/plugin/AdblockPlus.idl
@@ -1,39 +1,27 @@
-// AdBlockPlus.idl : IDL source for AdblockPlus.dll
-//
-
-#include "AdblockPlusGuids.h"
-
-import "oaidl.idl";
-import "ocidl.idl";
-
-[
- object,
- uuid(GUUID_IPRODUCT),
- dual,
- helpstring("Adblock Plus Interface"),
- pointer_default(unique)
-]
-interface IIEPlugin : IDispatch
-{
-};
-
-[
- uuid(GUUID_TYPELIB),
- version(1.0),
- helpstring("Adblock Plus 1.0 Type Library")
-]
-
-library PluginLib
-{
- importlib("stdole32.tlb");
- importlib("stdole2.tlb");
-
- [
- uuid(GUUID_CLASS_PRODUCT),
- helpstring("Adblock Plus Class")
- ]
- coclass PluginClass
- {
- [default] interface IIEPlugin;
- };
-};
+// AdBlockPlus.idl : IDL source for AdblockPlus.dll
+//
+
+#include "AdblockPlusGuids.h"
+
+import "oaidl.idl";
+import "ocidl.idl";
+
+[
+ uuid(GUUID_TYPELIB),
+ version(1.0),
+ helpstring("Adblock Plus 1.0 Type Library")
+]
+library PluginLib
+{
+ importlib("stdole32.tlb");
+ importlib("stdole2.tlb");
+
+ [
+ uuid(GUUID_CLASS_PRODUCT),
+ helpstring("Adblock Plus Class")
+ ]
+ coclass PluginClass
+ {
+ [default] interface IUnknown;
+ };
+};
« no previous file with comments | « no previous file | src/plugin/PluginClass.h » ('j') | src/plugin/PluginClass.cpp » ('J')

Powered by Google App Engine
This is Rietveld