| Index: third_party/grpc/test/build/boringssl.c
|
| diff --git a/third_party/WebKit/Source/platform/audio/AudioProcessor.cpp b/third_party/grpc/test/build/boringssl.c
|
| similarity index 82%
|
| copy from third_party/WebKit/Source/platform/audio/AudioProcessor.cpp
|
| copy to third_party/grpc/test/build/boringssl.c
|
| index 30b46c359d7b6bb801c0e53e83a724523d144c4b..a31d4bf3964df7d86cb73409aa543777712663c6 100644
|
| --- a/third_party/WebKit/Source/platform/audio/AudioProcessor.cpp
|
| +++ b/third_party/grpc/test/build/boringssl.c
|
| @@ -1,5 +1,7 @@
|
| /*
|
| - * Copyright (C) 2013 Google Inc. All rights reserved.
|
| + *
|
| + * Copyright 2016, Google Inc.
|
| + * All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without
|
| * modification, are permitted provided that the following conditions are
|
| @@ -26,14 +28,24 @@
|
| * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| + *
|
| */
|
|
|
| -#include "platform/audio/AudioProcessor.h"
|
| +// Check that boringssl is going to compile
|
|
|
| -namespace blink {
|
| +#include <stdio.h>
|
| +#include <unistd.h>
|
|
|
| -AudioProcessor::~AudioProcessor()
|
| -{
|
| -}
|
| +// boringssl uses anonymous unions
|
| +struct foo {
|
| + union {
|
| + int a;
|
| + int b;
|
| + };
|
| +};
|
|
|
| -} // namespace blink
|
| +int main(void) {
|
| + const char *close = "this should not shadow";
|
| + printf("%s\n", close);
|
| + return 0;
|
| +}
|
|
|