Page Speed Optimization Libraries  1.13.35.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ua_sensitive_test_fetcher.h
Go to the documentation of this file.
1 /*
2  * Copyright 2013 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http:///www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
22 
23 #ifndef NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_
24 #define NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_
25 
29 
30 namespace net_instaweb {
31 
32 class AsyncFetch;
33 class MessageHandler;
34 
39  public:
40  explicit UserAgentSensitiveTestFetcher(UrlAsyncFetcher* base_fetcher);
41  virtual void Fetch(const GoogleString& url,
42  MessageHandler* message_handler,
43  AsyncFetch* fetch);
44 
45  virtual bool SupportsHttps() const;
46 
47  private:
48  UrlAsyncFetcher* base_fetcher_;
49 
50 
51 };
52 
53 }
54 
55 #endif
virtual void Fetch(const GoogleString &url, MessageHandler *message_handler, AsyncFetch *fetch)
Definition: ua_sensitive_test_fetcher.h:38
std::string GoogleString
PAGESPEED_KERNEL_BASE_STRING_H_.
Definition: string.h:24
Definition: async_fetch.h:53
Definition: message_handler.h:39
Definition: url_async_fetcher.h:33