Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: content/browser/frame_host/data_url_navigation_throttle.h

Issue 2702503002: Block renderer-initiated main frame navigations to data URLs (Closed)
Patch Set: dcheng comments - move checks to FrameLoader Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_DATA_URL_NAVIGATION_THROTTLE_
6 #define CONTENT_BROWSER_FRAME_HOST_DATA_URL_NAVIGATION_THROTTLE_
7
8 #include <memory>
9
10 #include "base/macros.h"
11 #include "content/public/browser/navigation_throttle.h"
12
13 namespace content {
14
15 class DataUrlNavigationThrottle : public NavigationThrottle {
16 public:
17 DataUrlNavigationThrottle(NavigationHandle* navigation_handle);
kinuko 2017/04/19 07:07:44 nit: explicit
meacer 2017/04/21 01:31:21 Done.
18 ~DataUrlNavigationThrottle() override;
19
20 // NavigationThrottle method:
21 ThrottleCheckResult WillProcessResponse() override;
22
23 static std::unique_ptr<NavigationThrottle> CreateThrottleForNavigation(
24 NavigationHandle* navigation_handle);
25
26 private:
27 DISALLOW_COPY_AND_ASSIGN(DataUrlNavigationThrottle);
28 };
29
30 } // namespace content
31
32 #endif // CONTENT_BROWSER_FRAME_HOST_DATA_URL_NAVIGATION_THROTTLE_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698