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

Unified Diff: chrome_elf/chrome_elf_main.cc

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move InitChromeElf to after the fast notify Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698