Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brenca committed Jun 12, 2019
1 parent 0b73967 commit ac1b716
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 2 additions & 0 deletions atom/browser/atom_autofill_driver.cc
Expand Up @@ -4,6 +4,8 @@

#include "atom/browser/atom_autofill_driver.h"

#include <utility>

#include "atom/browser/api/atom_api_web_contents.h"
#include "atom/browser/native_window.h"
#include "content/public/browser/render_widget_host_view.h"
Expand Down
4 changes: 2 additions & 2 deletions atom/browser/atom_autofill_driver.h
Expand Up @@ -5,7 +5,7 @@
#ifndef ATOM_BROWSER_ATOM_AUTOFILL_DRIVER_H_
#define ATOM_BROWSER_ATOM_AUTOFILL_DRIVER_H_

#include <vector>
#include <memory>

#if defined(TOOLKIT_VIEWS)
#include "atom/browser/ui/autofill_popup.h"
Expand All @@ -18,7 +18,7 @@ namespace atom {

class AutofillDriver : public mojom::ElectronAutofillDriver {
public:
AutofillDriver(content::RenderFrameHost* render_frame_host);
explicit AutofillDriver(content::RenderFrameHost* render_frame_host);

~AutofillDriver() override;

Expand Down
4 changes: 4 additions & 0 deletions atom/browser/atom_autofill_driver_factory.cc
Expand Up @@ -4,6 +4,10 @@

#include "atom/browser/atom_autofill_driver_factory.h"

#include <memory>
#include <utility>
#include <vector>

#include "atom/browser/atom_autofill_driver.h"
#include "base/bind.h"
#include "base/callback.h"
Expand Down
3 changes: 2 additions & 1 deletion atom/browser/atom_autofill_driver_factory.h
Expand Up @@ -5,6 +5,7 @@
#ifndef ATOM_BROWSER_ATOM_AUTOFILL_DRIVER_FACTORY_H_
#define ATOM_BROWSER_ATOM_AUTOFILL_DRIVER_FACTORY_H_

#include <memory>
#include <unordered_map>

#include "base/callback_forward.h"
Expand All @@ -19,7 +20,7 @@ class AutofillDriver;
class AutofillDriverFactory : public content::WebContentsObserver,
public base::SupportsUserData::Data {
public:
AutofillDriverFactory(content::WebContents* web_contents);
explicit AutofillDriverFactory(content::WebContents* web_contents);

~AutofillDriverFactory() override;

Expand Down

0 comments on commit ac1b716

Please sign in to comment.