OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_TEST_WEBDRIVER_COMMANDS_COOKIE_COMMANDS_H_ | 5 #ifndef CHROME_TEST_WEBDRIVER_COMMANDS_COOKIE_COMMANDS_H_ |
6 #define CHROME_TEST_WEBDRIVER_COMMANDS_COOKIE_COMMANDS_H_ | 6 #define CHROME_TEST_WEBDRIVER_COMMANDS_COOKIE_COMMANDS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "chrome/test/webdriver/commands/webdriver_command.h" | 11 #include "chrome/test/webdriver/commands/webdriver_command.h" |
12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class DictionaryValue; | 15 class DictionaryValue; |
16 } | 16 } |
17 | 17 |
18 namespace webdriver { | 18 namespace webdriver { |
19 | 19 |
20 class Response; | 20 class Response; |
21 | 21 |
22 // Retrieve all cookies visible to the current page. Each cookie will be | 22 // Retrieve all cookies visible to the current page. Each cookie will be |
23 // returned as a JSON object with the following properties: | 23 // returned as a JSON object with the following properties: |
24 // name, value, path, domain, secure, and expiry. See: | 24 // name, value, path, domain, secure, and expiry. See: |
25 // http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/c
ookie | 25 // http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/c
ookie |
26 class CookieCommand : public WebDriverCommand { | 26 class CookieCommand : public WebDriverCommand { |
27 public: | 27 public: |
28 CookieCommand(const std::vector<std::string>& path_segments, | 28 CookieCommand(const std::vector<std::string>& path_segments, |
29 const base::DictionaryValue* const parameters); | 29 base::DictionaryValue* const parameters); |
30 virtual ~CookieCommand(); | 30 virtual ~CookieCommand(); |
31 | 31 |
32 virtual bool DoesDelete() OVERRIDE; | 32 virtual bool DoesDelete() OVERRIDE; |
33 virtual bool DoesGet() OVERRIDE; | 33 virtual bool DoesGet() OVERRIDE; |
34 virtual bool DoesPost() OVERRIDE; | 34 virtual bool DoesPost() OVERRIDE; |
35 | 35 |
36 virtual void ExecuteDelete(Response* const response) OVERRIDE; | 36 virtual void ExecuteDelete(Response* const response) OVERRIDE; |
37 virtual void ExecuteGet(Response* const response) OVERRIDE; | 37 virtual void ExecuteGet(Response* const response) OVERRIDE; |
38 virtual void ExecutePost(Response* const response) OVERRIDE; | 38 virtual void ExecutePost(Response* const response) OVERRIDE; |
39 | 39 |
40 private: | 40 private: |
41 DISALLOW_COPY_AND_ASSIGN(CookieCommand); | 41 DISALLOW_COPY_AND_ASSIGN(CookieCommand); |
42 }; | 42 }; |
43 | 43 |
44 // Set a cookie. The cookie should be specified as a JSON object with the | 44 // Set a cookie. The cookie should be specified as a JSON object with the |
45 // following properties: name, value, path, domain, secure, and expiry. See: | 45 // following properties: name, value, path, domain, secure, and expiry. See: |
46 // http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/c
ookie/:name | 46 // http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/c
ookie/:name |
47 class NamedCookieCommand : public WebDriverCommand { | 47 class NamedCookieCommand : public WebDriverCommand { |
48 public: | 48 public: |
49 NamedCookieCommand(const std::vector<std::string>& path_segments, | 49 NamedCookieCommand(const std::vector<std::string>& path_segments, |
50 const base::DictionaryValue* const parameters); | 50 base::DictionaryValue* const parameters); |
51 virtual ~NamedCookieCommand(); | 51 virtual ~NamedCookieCommand(); |
52 | 52 |
53 virtual bool Init(Response* const response) OVERRIDE; | 53 virtual bool Init(Response* const response) OVERRIDE; |
54 | 54 |
55 virtual bool DoesDelete() OVERRIDE; | 55 virtual bool DoesDelete() OVERRIDE; |
56 | 56 |
57 virtual void ExecuteDelete(Response* const response) OVERRIDE; | 57 virtual void ExecuteDelete(Response* const response) OVERRIDE; |
58 | 58 |
59 private: | 59 private: |
60 std::string cookie_name_; | 60 std::string cookie_name_; |
61 | 61 |
62 DISALLOW_COPY_AND_ASSIGN(NamedCookieCommand); | 62 DISALLOW_COPY_AND_ASSIGN(NamedCookieCommand); |
63 }; | 63 }; |
64 | 64 |
65 } // namespace webdriver | 65 } // namespace webdriver |
66 | 66 |
67 #endif // CHROME_TEST_WEBDRIVER_COMMANDS_COOKIE_COMMANDS_H_ | 67 #endif // CHROME_TEST_WEBDRIVER_COMMANDS_COOKIE_COMMANDS_H_ |
OLD | NEW |