mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
chore: fix linting after shell rename
This commit is contained in:
committed by
Samuel Attard
parent
2160c1fcc9
commit
56930338e8
@@ -2,8 +2,8 @@
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
|
||||
#define ATOM_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
|
||||
#ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
|
||||
#define SHELL_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
|
||||
|
||||
#include "native_mate/handle.h"
|
||||
#include "shell/browser/api/views/atom_api_layout_manager.h"
|
||||
@@ -37,4 +37,4 @@ class BoxLayout : public LayoutManager {
|
||||
|
||||
} // namespace atom
|
||||
|
||||
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
|
||||
#endif // SHELL_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
|
||||
#define ATOM_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
|
||||
#ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
|
||||
#define SHELL_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
|
||||
|
||||
#include "native_mate/handle.h"
|
||||
#include "shell/browser/api/atom_api_view.h"
|
||||
@@ -37,4 +37,4 @@ class Button : public View, public views::ButtonListener {
|
||||
|
||||
} // namespace atom
|
||||
|
||||
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
|
||||
#endif // SHELL_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
|
||||
#define ATOM_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
|
||||
#ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
|
||||
#define SHELL_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
|
||||
|
||||
#include <string>
|
||||
|
||||
@@ -44,4 +44,4 @@ class LabelButton : public Button {
|
||||
|
||||
} // namespace atom
|
||||
|
||||
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
|
||||
#endif // SHELL_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
|
||||
#define ATOM_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
|
||||
#ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
|
||||
#define SHELL_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -41,4 +41,4 @@ class LayoutManager : public mate::TrackableObject<LayoutManager> {
|
||||
|
||||
} // namespace atom
|
||||
|
||||
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
|
||||
#endif // SHELL_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
|
||||
#define ATOM_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
|
||||
#ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
|
||||
#define SHELL_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
|
||||
|
||||
#include <string>
|
||||
|
||||
@@ -38,4 +38,4 @@ class MdTextButton : public LabelButton {
|
||||
|
||||
} // namespace atom
|
||||
|
||||
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
|
||||
#endif // SHELL_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
|
||||
#define ATOM_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
|
||||
#ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
|
||||
#define SHELL_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
|
||||
|
||||
#include "native_mate/handle.h"
|
||||
#include "shell/browser/api/atom_api_view.h"
|
||||
@@ -40,4 +40,4 @@ class ResizeArea : public View, protected views::ResizeAreaDelegate {
|
||||
|
||||
} // namespace atom
|
||||
|
||||
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
|
||||
#endif // SHELL_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
|
||||
#define ATOM_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
|
||||
#ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
|
||||
#define SHELL_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
|
||||
|
||||
#include "native_mate/handle.h"
|
||||
#include "shell/browser/api/atom_api_view.h"
|
||||
@@ -39,4 +39,4 @@ class TextField : public View {
|
||||
|
||||
} // namespace atom
|
||||
|
||||
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
|
||||
#endif // SHELL_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
|
||||
|
||||
Reference in New Issue
Block a user