OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 virtual void OnNavigate(const std::wstring& url); | 76 virtual void OnNavigate(const std::wstring& url); |
77 virtual void OnDownloadComplete(IWebBrowser2* browser); | 77 virtual void OnDownloadComplete(IWebBrowser2* browser); |
78 virtual void OnDocumentComplete(IWebBrowser2* browser, const std::wstring& url
, bool isDocumentBrowser); | 78 virtual void OnDocumentComplete(IWebBrowser2* browser, const std::wstring& url
, bool isDocumentBrowser); |
79 static DWORD WINAPI TabThreadProc(LPVOID pParam); | 79 static DWORD WINAPI TabThreadProc(LPVOID pParam); |
80 void CacheFrame(const std::wstring& url); | 80 void CacheFrame(const std::wstring& url); |
81 bool IsFrameCached(const std::wstring& url); | 81 bool IsFrameCached(const std::wstring& url); |
82 void ClearFrameCache(const std::wstring& domain=L""); | 82 void ClearFrameCache(const std::wstring& domain=L""); |
83 | 83 |
84 }; | 84 }; |
85 | 85 |
| 86 /** |
| 87 * Temporary class used during refactoring. |
| 88 * This is the definition previously in AdblockPlusTab.h |
| 89 * Defining this class during refactoring alleviates the need to rename CPluginT
abBase in the first change set. |
| 90 */ |
| 91 class CPluginTab : public CPluginTabBase |
| 92 { |
| 93 |
| 94 public: |
| 95 CPluginTab(CPluginClass* plugin) : CPluginTabBase(plugin) {}; |
| 96 ~CPluginTab() {}; |
| 97 }; |
| 98 |
| 99 |
86 | 100 |
87 #endif // _PLUGIN_TAB_BASE_H_ | 101 #endif // _PLUGIN_TAB_BASE_H_ |
OLD | NEW |