Skip to content

Commit

Permalink
refactor: update header guard for atom_navigation_throttle.h
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Aug 3, 2018
1 parent bf82da6 commit e8e9cb3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions atom/browser/atom_navigation_throttle.h
Expand Up @@ -2,16 +2,16 @@
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.

#ifndef ATOM_BROWSER_NET_ATOM_NAVIGATION_THROTTLE_H_
#define ATOM_BROWSER_NET_ATOM_NAVIGATION_THROTTLE_H_
#ifndef ATOM_BROWSER_ATOM_NAVIGATION_THROTTLE_H_
#define ATOM_BROWSER_ATOM_NAVIGATION_THROTTLE_H_

#include "content/public/browser/navigation_throttle.h"

namespace atom {

class AtomNavigationThrottle : public content::NavigationThrottle {
public:
AtomNavigationThrottle(content::NavigationHandle* handle);
explicit AtomNavigationThrottle(content::NavigationHandle* handle);
~AtomNavigationThrottle() override;

AtomNavigationThrottle::ThrottleCheckResult WillRedirectRequest() override;
Expand All @@ -24,4 +24,4 @@ class AtomNavigationThrottle : public content::NavigationThrottle {

} // namespace atom

#endif // ATOM_BROWSER_NET_ATOM_NAVIGATION_THROTTLE_H_
#endif // ATOM_BROWSER_ATOM_NAVIGATION_THROTTLE_H_

0 comments on commit e8e9cb3

Please sign in to comment.