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 Sep 15, 2018
1 parent f96dad4 commit 4b9e1e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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_
4 changes: 2 additions & 2 deletions filenames.gni
Expand Up @@ -209,8 +209,8 @@ filenames = {
"atom/browser/atom_browser_main_parts_posix.cc",
"atom/browser/atom_javascript_dialog_manager.cc",
"atom/browser/atom_javascript_dialog_manager.h",
"atom/browser/net/atom_navigation_throttle.h",
"atom/browser/net/atom_navigation_throttle.cc",
"atom/browser/atom_navigation_throttle.h",
"atom/browser/atom_navigation_throttle.cc",
"atom/browser/atom_permission_manager.cc",
"atom/browser/atom_permission_manager.h",
"atom/browser/atom_quota_permission_context.cc",
Expand Down

0 comments on commit 4b9e1e4

Please sign in to comment.