Page Speed Optimization Libraries
1.7.30.1
|
00001 /* 00002 * Copyright 2013 Google Inc. 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http:///www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00022 00023 #ifndef NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_ 00024 #define NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_ 00025 00026 #include "net/instaweb/http/public/url_async_fetcher.h" 00027 #include "pagespeed/kernel/base/basictypes.h" 00028 #include "pagespeed/kernel/base/string.h" 00029 00030 namespace net_instaweb { 00031 00032 class AsyncFetch; 00033 class MessageHandler; 00034 00038 class UserAgentSensitiveTestFetcher : public UrlAsyncFetcher { 00039 public: 00040 explicit UserAgentSensitiveTestFetcher(UrlAsyncFetcher* base_fetcher); 00041 virtual void Fetch(const GoogleString& url, 00042 MessageHandler* message_handler, 00043 AsyncFetch* fetch); 00044 00045 virtual bool SupportsHttps() const; 00046 00047 private: 00048 UrlAsyncFetcher* base_fetcher_; 00049 00050 DISALLOW_COPY_AND_ASSIGN(UserAgentSensitiveTestFetcher); 00051 }; 00052 00053 } 00054 00055 #endif ///< NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_