~osomon/oxide/non-ime-initiated-text-edit

« back to all changes in this revision

Viewing changes to shared/browser/oxide_redirection_intercept_throttle.h

  • Committer: Olivier Tilloy
  • Date: 2015-05-18 14:31:37 UTC
  • mfrom: (1022.1.58 oxide)
  • Revision ID: olivier.tilloy@canonical.com-20150518143137-omciv1buwk0t5r6o
Merge the latest changes from trunk and resolve a couple of conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim:expandtab:shiftwidth=2:tabstop=2:
 
2
// Copyright (C) 2015 Canonical Ltd.
 
3
 
 
4
// This library is free software; you can redistribute it and/or
 
5
// modify it under the terms of the GNU Lesser General Public
 
6
// License as published by the Free Software Foundation; either
 
7
// version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
// This library is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
// Lesser General Public License for more details.
 
13
 
 
14
// You should have received a copy of the GNU Lesser General Public
 
15
// License along with this library; if not, write to the Free Software
 
16
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
#ifndef _OXIDE_SHARED_BROWSER_REDIRECTION_INTERCEPT_THROTTLE_H_
 
19
#define _OXIDE_SHARED_BROWSER_REDIRECTION_INTERCEPT_THROTTLE_H_
 
20
 
 
21
#include "base/macros.h"
 
22
#include "content/public/browser/resource_throttle.h"
 
23
 
 
24
namespace content {
 
25
class ResourceContext;
 
26
}
 
27
 
 
28
namespace net {
 
29
class URLRequest;
 
30
}
 
31
 
 
32
namespace oxide {
 
33
 
 
34
class RedirectionInterceptThrottle : public content::ResourceThrottle {
 
35
 public:
 
36
  RedirectionInterceptThrottle(net::URLRequest* request,
 
37
                               content::ResourceContext* context);
 
38
  ~RedirectionInterceptThrottle() override;
 
39
 
 
40
 private:
 
41
  // content::ResourceThrottle implementation
 
42
  void WillRedirectRequest(const net::RedirectInfo& redirect_info,
 
43
                           bool* defer) override;
 
44
  const char* GetNameForLogging() const override;
 
45
 
 
46
  net::URLRequest* request_;
 
47
  content::ResourceContext* resource_context_;
 
48
 
 
49
  DISALLOW_COPY_AND_ASSIGN(RedirectionInterceptThrottle);
 
50
};
 
51
 
 
52
} // namespace oxide
 
53
 
 
54
#endif // _OXIDE_SHARED_BROWSER_REDIRECTION_INTERCEPT_THROTTLE_H_