Chromium Code Reviews| Index: chrome_elf/chrome_elf_main.cc |
| diff --git a/net/tools/flip_server/flip_test_utils.cc b/chrome_elf/chrome_elf_main.cc |
| similarity index 50% |
| copy from net/tools/flip_server/flip_test_utils.cc |
| copy to chrome_elf/chrome_elf_main.cc |
| index d9846cf5ac751f7bb7389e4faba71d03c43dc05c..11e087376bed17a2067fa778f968151691b7137b 100644 |
| --- a/net/tools/flip_server/flip_test_utils.cc |
| +++ b/chrome_elf/chrome_elf_main.cc |
| @@ -2,14 +2,12 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "net/tools/flip_server/flip_test_utils.h" |
| +#include <windows.h> |
| -namespace net { |
| +#include "chrome_elf/chrome_elf_main.h" |
| -MockSMInterface::MockSMInterface() { |
| -} |
| +void InitChromeElf() {} |
|
gab
2013/11/11 20:11:38
Should this method be kept, I think we prefer no-o
Cait (Slow)
2013/11/12 16:33:54
Done.
|
| -MockSMInterface::~MockSMInterface() { |
| +BOOL APIENTRY DllMain(HMODULE module, DWORD reason, LPVOID reserved) { |
| + return TRUE; |
| } |
| - |
| -} // namespace net |