| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 /* | |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | |
| 3 * Copyright (C) 2006-2015 Eyeo GmbH | |
| 4 * | |
| 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 | |
| 7 * published by the Free Software Foundation. | |
| 8 * | |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 * GNU General Public License for more details. | |
| 13 * | |
| 14 * You should have received a copy of the GNU General Public License | |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
| 16 */ | |
| 17 | |
| 1 #pragma once | 18 #pragma once |
| 2 #include <string> | 19 #include <string> |
| 3 | 20 |
| 4 std::wstring HtmlFolderPath(); | 21 std::wstring HtmlFolderPath(); |
| 5 std::wstring UserSettingsFileUrl(); | 22 std::wstring UserSettingsFileUrl(); |
| 6 std::wstring FirstRunPageFileUrl(); | 23 std::wstring FirstRunPageFileUrl(); |
| 7 std::wstring FileUrl(const std::wstring& url); | 24 std::wstring FileUrl(const std::wstring& url); |
| 8 std::wstring GetLocationUrl(IWebBrowser2& browser); | 25 std::wstring GetLocationUrl(IWebBrowser2& browser); |
|
Eric
2015/01/13 17:04:20
I had a version of this function in the string con
sergei
2015/01/29 12:42:11
Should I create the class for it?
Eric
2015/02/02 19:07:54
The next time you write a function with an argumen
| |
| 9 | 26 |
|
Oleksandr
2015/01/30 14:29:45
No new string in the end of file, please
| |
| LEFT | RIGHT |