| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * |
| 3 * Copyright 2015-2016, Google Inc. |
| 4 * All rights reserved. |
| 3 * | 5 * |
| 4 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 6 * met: | 8 * met: |
| 7 * | 9 * |
| 8 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 11 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 12 * * Redistributions in binary form must reproduce the above |
| 11 * copyright notice, this list of conditions and the following disclaimer | 13 * copyright notice, this list of conditions and the following disclaimer |
| 12 * in the documentation and/or other materials provided with the | 14 * in the documentation and/or other materials provided with the |
| 13 * distribution. | 15 * distribution. |
| 14 * * Neither the name of Google Inc. nor the names of its | 16 * * Neither the name of Google Inc. nor the names of its |
| 15 * contributors may be used to endorse or promote products derived from | 17 * contributors may be used to endorse or promote products derived from |
| 16 * this software without specific prior written permission. | 18 * this software without specific prior written permission. |
| 17 * | 19 * |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 * | 31 * |
| 30 */ | 32 */ |
| 31 | 33 |
| 32 #ifndef PrerendererClientImpl_h | 34 #import <Foundation/Foundation.h> |
| 33 #define PrerendererClientImpl_h | |
| 34 | 35 |
| 35 #include "core/loader/PrerendererClient.h" | 36 @class GRPCCompletionQueue; |
| 36 #include "wtf/Noncopyable.h" | 37 struct grpc_call; |
| 37 #include "wtf/PassRefPtr.h" | |
| 38 | 38 |
| 39 namespace blink { | 39 @interface GRPCHost : NSObject |
| 40 | 40 |
| 41 class Prerender; | 41 @property(nonatomic, readonly) NSString *address; |
| 42 class WebPrerendererClient; | 42 @property(nonatomic, copy) NSString *userAgentPrefix; |
| 43 | 43 |
| 44 class PrerendererClientImpl final : public GarbageCollected<PrerendererClientImp
l>, public PrerendererClient { | 44 /** The following properties should only be modified for testing: */ |
| 45 USING_GARBAGE_COLLECTED_MIXIN(PrerendererClientImpl); | |
| 46 WTF_MAKE_NONCOPYABLE(PrerendererClientImpl); | |
| 47 public: | |
| 48 explicit PrerendererClientImpl(WebPrerendererClient*); | |
| 49 | 45 |
| 50 void willAddPrerender(Prerender*) override; | 46 @property(nonatomic, getter=isSecure) BOOL secure; |
| 51 | 47 |
| 52 DEFINE_INLINE_VIRTUAL_TRACE() { PrerendererClient::trace(visitor); } | 48 @property(nonatomic, copy) NSString *pathToCertificates; |
| 49 @property(nonatomic, copy) NSString *hostNameOverride; |
| 53 | 50 |
| 54 private: | 51 /** Host objects initialized with the same address are the same. */ |
| 55 WebPrerendererClient* m_client; | 52 + (instancetype)hostWithAddress:(NSString *)address; |
| 56 }; | 53 - (instancetype)initWithAddress:(NSString *)address NS_DESIGNATED_INITIALIZER; |
| 57 | 54 |
| 58 } // namespace blink | 55 /** Create a grpc_call object to the provided path on this host. */ |
| 56 - (struct grpc_call *)unmanagedCallWithPath:(NSString *)path |
| 57 completionQueue:(GRPCCompletionQueue *)queue; |
| 59 | 58 |
| 60 #endif // PrerendererClientImpl_h | 59 @end |
| OLD | NEW |