diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-18 13:10:51 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-18 13:10:51 +0000 |
commit | 9c8ec183a37d98026285d4b4d47dedef873ab343 (patch) | |
tree | 38736793d0df3970abbe9795636bfc5b55fab16b /protocols | |
parent | 7774e1ced73f710d2a01a07a26baacbd7f19f84d (diff) |
SkypeWeb: Unneeded file removed.
git-svn-id: http://svn.miranda-ng.org/main/trunk@12910 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/SkypeWeb/SkypeWeb_10.vcxproj | 1 | ||||
-rw-r--r-- | protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/SkypeWeb/SkypeWeb_12.vcxproj | 1 | ||||
-rw-r--r-- | protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/SkypeWeb/src/requests/endpoint.h | 1 | ||||
-rw-r--r-- | protocols/SkypeWeb/src/requests/logout.h | 35 |
6 files changed, 0 insertions, 44 deletions
diff --git a/protocols/SkypeWeb/SkypeWeb_10.vcxproj b/protocols/SkypeWeb/SkypeWeb_10.vcxproj index 174b7791a6..100563adff 100644 --- a/protocols/SkypeWeb/SkypeWeb_10.vcxproj +++ b/protocols/SkypeWeb/SkypeWeb_10.vcxproj @@ -207,7 +207,6 @@ <ClInclude Include="src\requests\endpoint.h" />
<ClInclude Include="src\requests\history.h" />
<ClInclude Include="src\requests\login.h" />
- <ClInclude Include="src\requests\logout.h" />
<ClInclude Include="src\requests\messages.h" />
<ClInclude Include="src\requests\poll.h" />
<ClInclude Include="src\requests\profile.h" />
diff --git a/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters b/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters index d80d7dd5c6..13680565b6 100644 --- a/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters +++ b/protocols/SkypeWeb/SkypeWeb_10.vcxproj.filters @@ -45,9 +45,6 @@ <ClInclude Include="src\requests\login.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
- <ClInclude Include="src\requests\logout.h">
- <Filter>Header Files\requests</Filter>
- </ClInclude>
<ClInclude Include="src\requests\contacts.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
diff --git a/protocols/SkypeWeb/SkypeWeb_12.vcxproj b/protocols/SkypeWeb/SkypeWeb_12.vcxproj index c87a467013..fe70776904 100644 --- a/protocols/SkypeWeb/SkypeWeb_12.vcxproj +++ b/protocols/SkypeWeb/SkypeWeb_12.vcxproj @@ -209,7 +209,6 @@ <ClInclude Include="src\requests\contacts.h" />
<ClInclude Include="src\requests\history.h" />
<ClInclude Include="src\requests\login.h" />
- <ClInclude Include="src\requests\logout.h" />
<ClInclude Include="src\requests\messages.h" />
<ClInclude Include="src\requests\profile.h" />
<ClInclude Include="src\requests\endpoint.h" />
diff --git a/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters b/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters index 218d0d8e6f..43053b73e3 100644 --- a/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters +++ b/protocols/SkypeWeb/SkypeWeb_12.vcxproj.filters @@ -45,9 +45,6 @@ <ClInclude Include="src\requests\login.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
- <ClInclude Include="src\requests\logout.h">
- <Filter>Header Files\requests</Filter>
- </ClInclude>
<ClInclude Include="src\requests\contacts.h">
<Filter>Header Files\requests</Filter>
</ClInclude>
diff --git a/protocols/SkypeWeb/src/requests/endpoint.h b/protocols/SkypeWeb/src/requests/endpoint.h index e0fefa07a3..0f83d2b769 100644 --- a/protocols/SkypeWeb/src/requests/endpoint.h +++ b/protocols/SkypeWeb/src/requests/endpoint.h @@ -42,7 +42,6 @@ public: Headers
<< CHAR_VALUE("Accept", "application/json, text/javascript")
<< FORMAT_VALUE("RegistrationToken", "registrationToken=%s", regToken);
-
}
};
diff --git a/protocols/SkypeWeb/src/requests/logout.h b/protocols/SkypeWeb/src/requests/logout.h deleted file mode 100644 index 207a54f7d7..0000000000 --- a/protocols/SkypeWeb/src/requests/logout.h +++ /dev/null @@ -1,35 +0,0 @@ -/*
-Copyright (c) 2015 Miranda NG project (http://miranda-ng.org)
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation version 2
-of the License.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef _SKYPE_REQUEST_LOGOUT_H_
-#define _SKYPE_REQUEST_LOGOUT_H_
-
-class LogoutRequest : public HttpRequest
-{
-public:
- LogoutRequest() : HttpRequest(REQUEST_GET, "login.skype.com/logout")
- {
- flags |= NLHRF_REDIRECT;
- Url
- << INT_VALUE("client_id", 578134)
- << CHAR_VALUE("redirect_uri", "https%3A%2F%2Fweb.skype.com&intsrc=client-_-webapp-_-production-_-go-signin");
- Headers
- << CHAR_VALUE("Referer", "https://web.skype.com/");
- }
-};
-
-#endif //_SKYPE_REQUEST_LOGOUT_H_
|