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

Unified Diff: base/test/main_hook.cc

Issue 10690161: Make it possible to run gtests on iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@presubmit_change
Patch Set: Code review feedback addressed. Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: base/test/main_hook.cc
diff --git a/base/test/main_hook.cc b/base/test/main_hook.cc
new file mode 100644
index 0000000000000000000000000000000000000000..80c9e2e0072f61d9b53039a1040a67bb5c383044
--- /dev/null
+++ b/base/test/main_hook.cc
@@ -0,0 +1,10 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/test/main_hook.h"
+
+#if !defined(OS_IOS)
+MainHook::MainHook(MainType main_func, int argc, char* argv[]) {
+}
stuartmorgan 2012/07/12 10:59:23 Maybe move this up to the previous line (it's pret
leng 2012/07/12 11:17:31 I couldn't find it in the style guides. Thanks!
+#endif

Powered by Google App Engine
This is Rietveld 408576698