Page Speed Optimization Libraries  1.13.35.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
decode_rewritten_urls_filter.h
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 #ifndef NET_INSTAWEB_REWRITER_PUBLIC_DECODE_REWRITTEN_URLS_FILTER_H_
17 #define NET_INSTAWEB_REWRITER_PUBLIC_DECODE_REWRITTEN_URLS_FILTER_H_
18 
21 
22 namespace net_instaweb {
23 
24 class HtmlElement;
25 class RewriteDriver;
26 
30  public:
31  explicit DecodeRewrittenUrlsFilter(RewriteDriver* driver) : driver_(driver) {}
32  virtual ~DecodeRewrittenUrlsFilter();
33 
34  virtual void StartElement(HtmlElement* element);
35  virtual const char* Name() const { return "DecodeRewrittenUrlsFilter"; }
36 
37  private:
38  RewriteDriver* driver_;
39 
40 
41 };
42 
43 }
44 
45 #endif
virtual const char * Name() const
The name of this filter – used for logging and debugging.
Definition: decode_rewritten_urls_filter.h:35
Definition: empty_html_filter.h:37
virtual void StartElement(HtmlElement *element)
Definition: html_element.h:42
Definition: decode_rewritten_urls_filter.h:29
Definition: rewrite_driver.h:100