Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Side by Side Diff: webkit/tools/test_shell/test_shell_devtools_callargs.h

Issue 3005044: DevTools: Get rid of DevTools RPC. (Closed)
Patch Set: More files removed Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_devtools_agent.cc ('k') | webkit/tools/test_shell/test_shell_devtools_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698