| Index: chrome_frame/test_utils.cc
|
| diff --git a/chrome_frame/test_utils.cc b/chrome_frame/test_utils.cc
|
| index 319aa5458ad5d555e32a1f330bf8fc6ec0899416..e1377c7c5f308cd90048241ddb7f56f23a2ff1b6 100644
|
| --- a/chrome_frame/test_utils.cc
|
| +++ b/chrome_frame/test_utils.cc
|
| @@ -244,10 +244,10 @@ class ArgumentFilter : public base::ProcessFilter {
|
|
|
| // Returns true to indicate set-inclusion and false otherwise. This method
|
| // should not have side-effects and should be idempotent.
|
| - virtual bool Includes(base::ProcessId pid, base::ProcessId parent_pid) const {
|
| + virtual bool Includes(const base::ProcessEntry& entry) const {
|
| bool found = false;
|
| std::wstring command_line;
|
| - if (GetCommandLineForProcess(pid, &command_line)) {
|
| + if (GetCommandLineForProcess(entry.pid(), &command_line)) {
|
| std::wstring::const_iterator it =
|
| std::search(command_line.begin(),
|
| command_line.end(),
|
|
|