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

Unified Diff: third_party/grpc/src/csharp/Grpc.IntegrationTesting.Server/Program.cs

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/grpc/src/csharp/Grpc.IntegrationTesting.Server/Program.cs
diff --git a/breakpad/linux/breakpad_googletest_includes.h b/third_party/grpc/src/csharp/Grpc.IntegrationTesting.Server/Program.cs
similarity index 84%
copy from breakpad/linux/breakpad_googletest_includes.h
copy to third_party/grpc/src/csharp/Grpc.IntegrationTesting.Server/Program.cs
index aeab31563d41063c69d26fcf9da83b1397e0d67d..01bcc6e3081fc57e0b0f0f1267811f0c73b0e765 100644
--- a/breakpad/linux/breakpad_googletest_includes.h
+++ b/third_party/grpc/src/csharp/Grpc.IntegrationTesting.Server/Program.cs
@@ -1,4 +1,6 @@
-// Copyright (c) 2009, Google Inc.
+#region Copyright notice and license
+
+// Copyright 2015, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
@@ -27,10 +29,17 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#ifndef BREAKPAD_GOOGLETEST_INCLUDES_H__
-#define BREAKPAD_GOOGLETEST_INCLUDES_H__
+#endregion
-#include "testing/gtest/include/gtest/gtest.h"
-#include "testing/gmock/include/gmock/gmock.h"
+using System;
-#endif // BREAKPAD_GOOGLETEST_INCLUDES_H__
+namespace Grpc.IntegrationTesting.Server
+{
+ class Program
+ {
+ public static void Main(string[] args)
+ {
+ InteropServer.Run(args);
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698