OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 TEST_SHELL_DEVTOOLS_CALLARGS_H_ | 5 #ifndef TEST_SHELL_DEVTOOLS_CALLARGS_H_ |
6 #define TEST_SHELL_DEVTOOLS_CALLARGS_H_ | 6 #define TEST_SHELL_DEVTOOLS_CALLARGS_H_ |
7 | 7 |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 | 9 |
10 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsMessageData.h" | |
11 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" | 10 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
12 | 11 |
13 class TestShellDevToolsCallArgs { | 12 class TestShellDevToolsCallArgs { |
14 public: | 13 public: |
15 TestShellDevToolsCallArgs(const WebKit::WebDevToolsMessageData& data) | 14 TestShellDevToolsCallArgs(const WebKit::WebString& data) |
16 : data_(data) { | 15 : data_(data) { |
17 ++calls_count_; | 16 ++calls_count_; |
18 | |
19 // The same behaiviour as we have in case of IPC. | |
20 for (size_t i = 0; i < data_.arguments.size(); ++i) | |
21 if (data_.arguments[i].isNull()) | |
22 data_.arguments[i] = WebKit::WebString::fromUTF8(""); | |
23 } | 17 } |
24 | 18 |
25 TestShellDevToolsCallArgs(const TestShellDevToolsCallArgs& args) | 19 TestShellDevToolsCallArgs(const TestShellDevToolsCallArgs& args) |
26 : data_(args.data_) { | 20 : data_(args.data_) { |
27 ++calls_count_; | 21 ++calls_count_; |
28 } | 22 } |
29 | 23 |
30 ~TestShellDevToolsCallArgs() { | 24 ~TestShellDevToolsCallArgs() { |
31 --calls_count_; | 25 --calls_count_; |
32 DCHECK(calls_count_ >= 0); | 26 DCHECK(calls_count_ >= 0); |
33 } | 27 } |
34 | 28 |
35 static int calls_count() { return calls_count_; } | 29 static int calls_count() { return calls_count_; } |
36 | 30 |
37 WebKit::WebDevToolsMessageData data_; | 31 WebKit::WebString data_; |
38 | 32 |
39 private: | 33 private: |
40 static int calls_count_; | 34 static int calls_count_; |
41 }; | 35 }; |
42 | 36 |
43 #endif // TEST_SHELL_DEVTOOLS_CALLARGS_H_ | 37 #endif // TEST_SHELL_DEVTOOLS_CALLARGS_H_ |
OLD | NEW |