chore: fix linting after shell rename

This commit is contained in:
Samuel Attard 2019-06-19 13:56:58 -07:00 committed by Samuel Attard
parent 2160c1fcc9
commit 56930338e8
294 changed files with 896 additions and 896 deletions

View file

@ -11,21 +11,21 @@ const SOURCE_ROOT = path.normalize(path.dirname(__dirname))
const DEPOT_TOOLS = path.resolve(SOURCE_ROOT, '..', 'third_party', 'depot_tools') const DEPOT_TOOLS = path.resolve(SOURCE_ROOT, '..', 'third_party', 'depot_tools')
const BLACKLIST = new Set([ const BLACKLIST = new Set([
['atom', 'browser', 'mac', 'atom_application.h'], ['shell', 'browser', 'mac', 'atom_application.h'],
['atom', 'browser', 'mac', 'atom_application_delegate.h'], ['shell', 'browser', 'mac', 'atom_application_delegate.h'],
['atom', 'browser', 'resources', 'win', 'resource.h'], ['shell', 'browser', 'resources', 'win', 'resource.h'],
['atom', 'browser', 'notifications', 'mac', 'notification_center_delegate.h'], ['shell', 'browser', 'notifications', 'mac', 'notification_center_delegate.h'],
['atom', 'browser', 'ui', 'cocoa', 'atom_menu_controller.h'], ['shell', 'browser', 'ui', 'cocoa', 'atom_menu_controller.h'],
['atom', 'browser', 'ui', 'cocoa', 'atom_ns_window.h'], ['shell', 'browser', 'ui', 'cocoa', 'atom_ns_window.h'],
['atom', 'browser', 'ui', 'cocoa', 'atom_ns_window_delegate.h'], ['shell', 'browser', 'ui', 'cocoa', 'atom_ns_window_delegate.h'],
['atom', 'browser', 'ui', 'cocoa', 'atom_preview_item.h'], ['shell', 'browser', 'ui', 'cocoa', 'atom_preview_item.h'],
['atom', 'browser', 'ui', 'cocoa', 'atom_touch_bar.h'], ['shell', 'browser', 'ui', 'cocoa', 'atom_touch_bar.h'],
['atom', 'browser', 'ui', 'cocoa', 'atom_inspectable_web_contents_view.h'], ['shell', 'browser', 'ui', 'cocoa', 'atom_inspectable_web_contents_view.h'],
['atom', 'browser', 'ui', 'cocoa', 'event_dispatching_window.h'], ['shell', 'browser', 'ui', 'cocoa', 'event_dispatching_window.h'],
['atom', 'browser', 'ui', 'cocoa', 'touch_bar_forward_declarations.h'], ['shell', 'browser', 'ui', 'cocoa', 'touch_bar_forward_declarations.h'],
['atom', 'browser', 'ui', 'cocoa', 'NSColor+Hex.h'], ['shell', 'browser', 'ui', 'cocoa', 'NSColor+Hex.h'],
['atom', 'browser', 'ui', 'cocoa', 'NSString+ANSI.h'], ['shell', 'browser', 'ui', 'cocoa', 'NSString+ANSI.h'],
['atom', 'common', 'node_includes.h'], ['shell', 'common', 'node_includes.h'],
['spec', 'static', 'jquery-2.0.3.min.js'], ['spec', 'static', 'jquery-2.0.3.min.js'],
['spec', 'ts-smoke', 'electron', 'main.ts'], ['spec', 'ts-smoke', 'electron', 'main.ts'],
['spec', 'ts-smoke', 'electron', 'renderer.ts'], ['spec', 'ts-smoke', 'electron', 'renderer.ts'],
@ -55,7 +55,7 @@ function cpplint (args) {
const LINTERS = [ { const LINTERS = [ {
key: 'c++', key: 'c++',
roots: ['atom', 'native_mate'], roots: ['shell', 'native_mate'],
test: filename => filename.endsWith('.cc') || filename.endsWith('.h'), test: filename => filename.endsWith('.cc') || filename.endsWith('.h'),
run: (opts, filenames) => { run: (opts, filenames) => {
if (opts.fix) { if (opts.fix) {
@ -67,7 +67,7 @@ const LINTERS = [ {
} }
}, { }, {
key: 'objc', key: 'objc',
roots: ['atom'], roots: ['shell'],
test: filename => filename.endsWith('.mm'), test: filename => filename.endsWith('.mm'),
run: (opts, filenames) => { run: (opts, filenames) => {
if (opts.fix) { if (opts.fix) {

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_ATOM_CONTENT_CLIENT_H_ #ifndef SHELL_APP_ATOM_CONTENT_CLIENT_H_
#define ATOM_APP_ATOM_CONTENT_CLIENT_H_ #define SHELL_APP_ATOM_CONTENT_CLIENT_H_
#include <set> #include <set>
#include <string> #include <string>
@ -39,4 +39,4 @@ class AtomContentClient : public content::ContentClient {
} // namespace atom } // namespace atom
#endif // ATOM_APP_ATOM_CONTENT_CLIENT_H_ #endif // SHELL_APP_ATOM_CONTENT_CLIENT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_ATOM_LIBRARY_MAIN_H_ #ifndef SHELL_APP_ATOM_LIBRARY_MAIN_H_
#define ATOM_APP_ATOM_LIBRARY_MAIN_H_ #define SHELL_APP_ATOM_LIBRARY_MAIN_H_
#include "build/build_config.h" #include "build/build_config.h"
#include "electron/buildflags/buildflags.h" #include "electron/buildflags/buildflags.h"
@ -20,4 +20,4 @@ __attribute__((visibility("default"))) int AtomInitializeICUandStartNode(
} }
#endif // OS_MACOSX #endif // OS_MACOSX
#endif // ATOM_APP_ATOM_LIBRARY_MAIN_H_ #endif // SHELL_APP_ATOM_LIBRARY_MAIN_H_

View file

@ -2,9 +2,9 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_ATOM_MAIN_H_ #ifndef SHELL_APP_ATOM_MAIN_H_
#define ATOM_APP_ATOM_MAIN_H_ #define SHELL_APP_ATOM_MAIN_H_
#include "content/public/app/content_main.h" #include "content/public/app/content_main.h"
#endif // ATOM_APP_ATOM_MAIN_H_ #endif // SHELL_APP_ATOM_MAIN_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_ATOM_MAIN_DELEGATE_H_ #ifndef SHELL_APP_ATOM_MAIN_DELEGATE_H_
#define ATOM_APP_ATOM_MAIN_DELEGATE_H_ #define SHELL_APP_ATOM_MAIN_DELEGATE_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -58,4 +58,4 @@ class AtomMainDelegate : public content::ContentMainDelegate {
} // namespace atom } // namespace atom
#endif // ATOM_APP_ATOM_MAIN_DELEGATE_H_ #endif // SHELL_APP_ATOM_MAIN_DELEGATE_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_ATOM_MAIN_DELEGATE_MAC_H_ #ifndef SHELL_APP_ATOM_MAIN_DELEGATE_MAC_H_
#define ATOM_APP_ATOM_MAIN_DELEGATE_MAC_H_ #define SHELL_APP_ATOM_MAIN_DELEGATE_MAC_H_
namespace atom { namespace atom {
@ -12,4 +12,4 @@ void RegisterAtomCrApp();
} // namespace atom } // namespace atom
#endif // ATOM_APP_ATOM_MAIN_DELEGATE_MAC_H_ #endif // SHELL_APP_ATOM_MAIN_DELEGATE_MAC_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_COMMAND_LINE_ARGS_H_ #ifndef SHELL_APP_COMMAND_LINE_ARGS_H_
#define ATOM_APP_COMMAND_LINE_ARGS_H_ #define SHELL_APP_COMMAND_LINE_ARGS_H_
#include "base/command_line.h" #include "base/command_line.h"
@ -13,4 +13,4 @@ bool CheckCommandLineArguments(int argc, base::CommandLine::CharType** argv);
} // namespace atom } // namespace atom
#endif // ATOM_APP_COMMAND_LINE_ARGS_H_ #endif // SHELL_APP_COMMAND_LINE_ARGS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_MANIFESTS_H_ #ifndef SHELL_APP_MANIFESTS_H_
#define ATOM_APP_MANIFESTS_H_ #define SHELL_APP_MANIFESTS_H_
#include <vector> #include <vector>
@ -13,4 +13,4 @@ const service_manager::Manifest& GetElectronContentBrowserOverlayManifest();
const std::vector<service_manager::Manifest>& const std::vector<service_manager::Manifest>&
GetElectronBuiltinServiceManifests(); GetElectronBuiltinServiceManifests();
#endif // ATOM_APP_MANIFESTS_H_ #endif // SHELL_APP_MANIFESTS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_NODE_MAIN_H_ #ifndef SHELL_APP_NODE_MAIN_H_
#define ATOM_APP_NODE_MAIN_H_ #define SHELL_APP_NODE_MAIN_H_
namespace atom { namespace atom {
@ -11,4 +11,4 @@ int NodeMain(int argc, char* argv[]);
} // namespace atom } // namespace atom
#endif // ATOM_APP_NODE_MAIN_H_ #endif // SHELL_APP_NODE_MAIN_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_APP_UV_TASK_RUNNER_H_ #ifndef SHELL_APP_UV_TASK_RUNNER_H_
#define ATOM_APP_UV_TASK_RUNNER_H_ #define SHELL_APP_UV_TASK_RUNNER_H_
#include <map> #include <map>
@ -42,4 +42,4 @@ class UvTaskRunner : public base::SingleThreadTaskRunner {
} // namespace atom } // namespace atom
#endif // ATOM_APP_UV_TASK_RUNNER_H_ #endif // SHELL_APP_UV_TASK_RUNNER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_APP_H_ #ifndef SHELL_BROWSER_API_ATOM_API_APP_H_
#define ATOM_BROWSER_API_ATOM_API_APP_H_ #define SHELL_BROWSER_API_ATOM_API_APP_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -246,4 +246,4 @@ class App : public AtomBrowserClient::Delegate,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_APP_H_ #endif // SHELL_BROWSER_API_ATOM_API_APP_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_AUTO_UPDATER_H_ #ifndef SHELL_BROWSER_API_ATOM_API_AUTO_UPDATER_H_
#define ATOM_BROWSER_API_ATOM_API_AUTO_UPDATER_H_ #define SHELL_BROWSER_API_ATOM_API_AUTO_UPDATER_H_
#include <string> #include <string>
@ -58,4 +58,4 @@ class AutoUpdater : public mate::EventEmitter<AutoUpdater>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_AUTO_UPDATER_H_ #endif // SHELL_BROWSER_API_ATOM_API_AUTO_UPDATER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_BROWSER_VIEW_H_ #ifndef SHELL_BROWSER_API_ATOM_API_BROWSER_VIEW_H_
#define ATOM_BROWSER_API_ATOM_API_BROWSER_VIEW_H_ #define SHELL_BROWSER_API_ATOM_API_BROWSER_VIEW_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -75,4 +75,4 @@ class BrowserView : public mate::TrackableObject<BrowserView>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_BROWSER_VIEW_H_ #endif // SHELL_BROWSER_API_ATOM_API_BROWSER_VIEW_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_BROWSER_WINDOW_H_ #ifndef SHELL_BROWSER_API_ATOM_API_BROWSER_WINDOW_H_
#define ATOM_BROWSER_API_ATOM_API_BROWSER_WINDOW_H_ #define SHELL_BROWSER_API_ATOM_API_BROWSER_WINDOW_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -127,4 +127,4 @@ class BrowserWindow : public TopLevelWindow,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_BROWSER_WINDOW_H_ #endif // SHELL_BROWSER_API_ATOM_API_BROWSER_WINDOW_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_COOKIES_H_ #ifndef SHELL_BROWSER_API_ATOM_API_COOKIES_H_
#define ATOM_BROWSER_API_ATOM_API_COOKIES_H_ #define SHELL_BROWSER_API_ATOM_API_COOKIES_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -62,4 +62,4 @@ class Cookies : public mate::TrackableObject<Cookies> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_COOKIES_H_ #endif // SHELL_BROWSER_API_ATOM_API_COOKIES_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_DEBUGGER_H_ #ifndef SHELL_BROWSER_API_ATOM_API_DEBUGGER_H_
#define ATOM_BROWSER_API_ATOM_API_DEBUGGER_H_ #define SHELL_BROWSER_API_ATOM_API_DEBUGGER_H_
#include <map> #include <map>
#include <string> #include <string>
@ -75,4 +75,4 @@ class Debugger : public mate::TrackableObject<Debugger>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_DEBUGGER_H_ #endif // SHELL_BROWSER_API_ATOM_API_DEBUGGER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_DESKTOP_CAPTURER_H_ #ifndef SHELL_BROWSER_API_ATOM_API_DESKTOP_CAPTURER_H_
#define ATOM_BROWSER_API_ATOM_API_DESKTOP_CAPTURER_H_ #define SHELL_BROWSER_API_ATOM_API_DESKTOP_CAPTURER_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -75,4 +75,4 @@ class DesktopCapturer : public mate::TrackableObject<DesktopCapturer>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_DESKTOP_CAPTURER_H_ #endif // SHELL_BROWSER_API_ATOM_API_DESKTOP_CAPTURER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_ #ifndef SHELL_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_
#define ATOM_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_ #define SHELL_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_
#include <string> #include <string>
#include <vector> #include <vector>
@ -71,4 +71,4 @@ class DownloadItem : public mate::TrackableObject<DownloadItem>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_ #endif // SHELL_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_ #ifndef SHELL_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_
#define ATOM_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_ #define SHELL_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_
#include <map> #include <map>
#include <string> #include <string>
@ -55,4 +55,4 @@ class GlobalShortcut : public extensions::GlobalShortcutListener::Observer,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_ #endif // SHELL_BROWSER_API_ATOM_API_GLOBAL_SHORTCUT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_IN_APP_PURCHASE_H_ #ifndef SHELL_BROWSER_API_ATOM_API_IN_APP_PURCHASE_H_
#define ATOM_BROWSER_API_ATOM_API_IN_APP_PURCHASE_H_ #define SHELL_BROWSER_API_ATOM_API_IN_APP_PURCHASE_H_
#include <string> #include <string>
#include <vector> #include <vector>
@ -49,4 +49,4 @@ class InAppPurchase : public mate::EventEmitter<InAppPurchase>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_IN_APP_PURCHASE_H_ #endif // SHELL_BROWSER_API_ATOM_API_IN_APP_PURCHASE_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_MENU_H_ #ifndef SHELL_BROWSER_API_ATOM_API_MENU_H_
#define ATOM_BROWSER_API_ATOM_API_MENU_H_ #define SHELL_BROWSER_API_ATOM_API_MENU_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -142,4 +142,4 @@ struct Converter<atom::AtomMenuModel*> {
} // namespace mate } // namespace mate
#endif // ATOM_BROWSER_API_ATOM_API_MENU_H_ #endif // SHELL_BROWSER_API_ATOM_API_MENU_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_MENU_MAC_H_ #ifndef SHELL_BROWSER_API_ATOM_API_MENU_MAC_H_
#define ATOM_BROWSER_API_ATOM_API_MENU_MAC_H_ #define SHELL_BROWSER_API_ATOM_API_MENU_MAC_H_
#include "shell/browser/api/atom_api_menu.h" #include "shell/browser/api/atom_api_menu.h"
@ -55,4 +55,4 @@ class MenuMac : public Menu {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_MENU_MAC_H_ #endif // SHELL_BROWSER_API_ATOM_API_MENU_MAC_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_ #ifndef SHELL_BROWSER_API_ATOM_API_MENU_VIEWS_H_
#define ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_ #define SHELL_BROWSER_API_ATOM_API_MENU_VIEWS_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -45,4 +45,4 @@ class MenuViews : public Menu {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_MENU_VIEWS_H_ #endif // SHELL_BROWSER_API_ATOM_API_MENU_VIEWS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_NET_H_ #ifndef SHELL_BROWSER_API_ATOM_API_NET_H_
#define ATOM_BROWSER_API_ATOM_API_NET_H_ #define SHELL_BROWSER_API_ATOM_API_NET_H_
#include "shell/browser/api/event_emitter.h" #include "shell/browser/api/event_emitter.h"
@ -32,4 +32,4 @@ class Net : public mate::EventEmitter<Net> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_NET_H_ #endif // SHELL_BROWSER_API_ATOM_API_NET_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_NET_LOG_H_ #ifndef SHELL_BROWSER_API_ATOM_API_NET_LOG_H_
#define ATOM_BROWSER_API_ATOM_API_NET_LOG_H_ #define SHELL_BROWSER_API_ATOM_API_NET_LOG_H_
#include <list> #include <list>
#include <memory> #include <memory>
@ -65,4 +65,4 @@ class NetLog : public mate::TrackableObject<NetLog> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_NET_LOG_H_ #endif // SHELL_BROWSER_API_ATOM_API_NET_LOG_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_NOTIFICATION_H_ #ifndef SHELL_BROWSER_API_ATOM_API_NOTIFICATION_H_
#define ATOM_BROWSER_API_ATOM_API_NOTIFICATION_H_ #define SHELL_BROWSER_API_ATOM_API_NOTIFICATION_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -94,4 +94,4 @@ class Notification : public mate::TrackableObject<Notification>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_NOTIFICATION_H_ #endif // SHELL_BROWSER_API_ATOM_API_NOTIFICATION_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_POWER_MONITOR_H_ #ifndef SHELL_BROWSER_API_ATOM_API_POWER_MONITOR_H_
#define ATOM_BROWSER_API_ATOM_API_POWER_MONITOR_H_ #define SHELL_BROWSER_API_ATOM_API_POWER_MONITOR_H_
#include "base/compiler_specific.h" #include "base/compiler_specific.h"
#include "native_mate/handle.h" #include "native_mate/handle.h"
@ -78,4 +78,4 @@ class PowerMonitor : public mate::TrackableObject<PowerMonitor>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_POWER_MONITOR_H_ #endif // SHELL_BROWSER_API_ATOM_API_POWER_MONITOR_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_POWER_SAVE_BLOCKER_H_ #ifndef SHELL_BROWSER_API_ATOM_API_POWER_SAVE_BLOCKER_H_
#define ATOM_BROWSER_API_ATOM_API_POWER_SAVE_BLOCKER_H_ #define SHELL_BROWSER_API_ATOM_API_POWER_SAVE_BLOCKER_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -58,4 +58,4 @@ class PowerSaveBlocker : public gin::Wrappable<PowerSaveBlocker> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_POWER_SAVE_BLOCKER_H_ #endif // SHELL_BROWSER_API_ATOM_API_POWER_SAVE_BLOCKER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_PROTOCOL_H_ #ifndef SHELL_BROWSER_API_ATOM_API_PROTOCOL_H_
#define ATOM_BROWSER_API_ATOM_API_PROTOCOL_H_ #define SHELL_BROWSER_API_ATOM_API_PROTOCOL_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -195,4 +195,4 @@ class Protocol : public mate::TrackableObject<Protocol> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_PROTOCOL_H_ #endif // SHELL_BROWSER_API_ATOM_API_PROTOCOL_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_PROTOCOL_NS_H_ #ifndef SHELL_BROWSER_API_ATOM_API_PROTOCOL_NS_H_
#define ATOM_BROWSER_API_ATOM_API_PROTOCOL_NS_H_ #define SHELL_BROWSER_API_ATOM_API_PROTOCOL_NS_H_
#include <string> #include <string>
@ -92,4 +92,4 @@ class ProtocolNS : public mate::TrackableObject<ProtocolNS> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_PROTOCOL_NS_H_ #endif // SHELL_BROWSER_API_ATOM_API_PROTOCOL_NS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_SCREEN_H_ #ifndef SHELL_BROWSER_API_ATOM_API_SCREEN_H_
#define ATOM_BROWSER_API_ATOM_API_SCREEN_H_ #define SHELL_BROWSER_API_ATOM_API_SCREEN_H_
#include <vector> #include <vector>
@ -56,4 +56,4 @@ class Screen : public mate::EventEmitter<Screen>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_SCREEN_H_ #endif // SHELL_BROWSER_API_ATOM_API_SCREEN_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_SESSION_H_ #ifndef SHELL_BROWSER_API_ATOM_API_SESSION_H_
#define ATOM_BROWSER_API_ATOM_API_SESSION_H_ #define SHELL_BROWSER_API_ATOM_API_SESSION_H_
#include <string> #include <string>
#include <vector> #include <vector>
@ -113,4 +113,4 @@ class Session : public mate::TrackableObject<Session>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_SESSION_H_ #endif // SHELL_BROWSER_API_ATOM_API_SESSION_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_SYSTEM_PREFERENCES_H_ #ifndef SHELL_BROWSER_API_ATOM_API_SYSTEM_PREFERENCES_H_
#define ATOM_BROWSER_API_ATOM_API_SYSTEM_PREFERENCES_H_ #define SHELL_BROWSER_API_ATOM_API_SYSTEM_PREFERENCES_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -168,4 +168,4 @@ class SystemPreferences : public mate::EventEmitter<SystemPreferences>
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_SYSTEM_PREFERENCES_H_ #endif // SHELL_BROWSER_API_ATOM_API_SYSTEM_PREFERENCES_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_TOP_LEVEL_WINDOW_H_ #ifndef SHELL_BROWSER_API_ATOM_API_TOP_LEVEL_WINDOW_H_
#define ATOM_BROWSER_API_ATOM_API_TOP_LEVEL_WINDOW_H_ #define SHELL_BROWSER_API_ATOM_API_TOP_LEVEL_WINDOW_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -283,4 +283,4 @@ struct Converter<atom::NativeWindow*> {
} // namespace mate } // namespace mate
#endif // ATOM_BROWSER_API_ATOM_API_TOP_LEVEL_WINDOW_H_ #endif // SHELL_BROWSER_API_ATOM_API_TOP_LEVEL_WINDOW_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_TRAY_H_ #ifndef SHELL_BROWSER_API_ATOM_API_TRAY_H_
#define ATOM_BROWSER_API_ATOM_API_TRAY_H_ #define SHELL_BROWSER_API_ATOM_API_TRAY_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -89,4 +89,4 @@ class Tray : public mate::TrackableObject<Tray>, public TrayIconObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_TRAY_H_ #endif // SHELL_BROWSER_API_ATOM_API_TRAY_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_URL_REQUEST_H_ #ifndef SHELL_BROWSER_API_ATOM_API_URL_REQUEST_H_
#define ATOM_BROWSER_API_ATOM_API_URL_REQUEST_H_ #define SHELL_BROWSER_API_ATOM_API_URL_REQUEST_H_
#include <array> #include <array>
#include <string> #include <string>
@ -211,4 +211,4 @@ class URLRequest : public mate::EventEmitter<URLRequest> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_URL_REQUEST_H_ #endif // SHELL_BROWSER_API_ATOM_API_URL_REQUEST_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_VIEW_H_ #ifndef SHELL_BROWSER_API_ATOM_API_VIEW_H_
#define ATOM_BROWSER_API_ATOM_API_VIEW_H_ #define SHELL_BROWSER_API_ATOM_API_VIEW_H_
#include <memory> #include <memory>
#include <vector> #include <vector>
@ -71,4 +71,4 @@ struct Converter<views::View*> {
} // namespace mate } // namespace mate
#endif // ATOM_BROWSER_API_ATOM_API_VIEW_H_ #endif // SHELL_BROWSER_API_ATOM_API_VIEW_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_ #ifndef SHELL_BROWSER_API_ATOM_API_WEB_CONTENTS_H_
#define ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_ #define SHELL_BROWSER_API_ATOM_API_WEB_CONTENTS_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -575,4 +575,4 @@ class WebContents : public mate::TrackableObject<WebContents>,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_ #endif // SHELL_BROWSER_API_ATOM_API_WEB_CONTENTS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_VIEW_H_ #ifndef SHELL_BROWSER_API_ATOM_API_WEB_CONTENTS_VIEW_H_
#define ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_VIEW_H_ #define SHELL_BROWSER_API_ATOM_API_WEB_CONTENTS_VIEW_H_
#include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_observer.h"
#include "native_mate/handle.h" #include "native_mate/handle.h"
@ -46,4 +46,4 @@ class WebContentsView : public View, public content::WebContentsObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_VIEW_H_ #endif // SHELL_BROWSER_API_ATOM_API_WEB_CONTENTS_VIEW_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_WEB_REQUEST_H_ #ifndef SHELL_BROWSER_API_ATOM_API_WEB_REQUEST_H_
#define ATOM_BROWSER_API_ATOM_API_WEB_REQUEST_H_ #define SHELL_BROWSER_API_ATOM_API_WEB_REQUEST_H_
#include "native_mate/arguments.h" #include "native_mate/arguments.h"
#include "native_mate/handle.h" #include "native_mate/handle.h"
@ -46,4 +46,4 @@ class WebRequest : public mate::TrackableObject<WebRequest> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_WEB_REQUEST_H_ #endif // SHELL_BROWSER_API_ATOM_API_WEB_REQUEST_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_EVENT_H_ #ifndef SHELL_BROWSER_API_EVENT_H_
#define ATOM_BROWSER_API_EVENT_H_ #define SHELL_BROWSER_API_EVENT_H_
#include "base/optional.h" #include "base/optional.h"
#include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_observer.h"
@ -56,4 +56,4 @@ class Event : public Wrappable<Event>, public content::WebContentsObserver {
} // namespace mate } // namespace mate
#endif // ATOM_BROWSER_API_EVENT_H_ #endif // SHELL_BROWSER_API_EVENT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_EVENT_EMITTER_H_ #ifndef SHELL_BROWSER_API_EVENT_EMITTER_H_
#define ATOM_BROWSER_API_EVENT_EMITTER_H_ #define SHELL_BROWSER_API_EVENT_EMITTER_H_
#include <utility> #include <utility>
#include <vector> #include <vector>
@ -122,4 +122,4 @@ class EventEmitter : public Wrappable<T> {
} // namespace mate } // namespace mate
#endif // ATOM_BROWSER_API_EVENT_EMITTER_H_ #endif // SHELL_BROWSER_API_EVENT_EMITTER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_FRAME_SUBSCRIBER_H_ #ifndef SHELL_BROWSER_API_FRAME_SUBSCRIBER_H_
#define ATOM_BROWSER_API_FRAME_SUBSCRIBER_H_ #define SHELL_BROWSER_API_FRAME_SUBSCRIBER_H_
#include <memory> #include <memory>
@ -72,4 +72,4 @@ class FrameSubscriber : public content::WebContentsObserver,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_FRAME_SUBSCRIBER_H_ #endif // SHELL_BROWSER_API_FRAME_SUBSCRIBER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_GPU_INFO_ENUMERATOR_H_ #ifndef SHELL_BROWSER_API_GPU_INFO_ENUMERATOR_H_
#define ATOM_BROWSER_API_GPU_INFO_ENUMERATOR_H_ #define SHELL_BROWSER_API_GPU_INFO_ENUMERATOR_H_
#include <memory> #include <memory>
#include <stack> #include <stack>
@ -57,4 +57,4 @@ class GPUInfoEnumerator final : public gpu::GPUInfo::Enumerator {
}; };
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_GPU_INFO_ENUMERATOR_H_ #endif // SHELL_BROWSER_API_GPU_INFO_ENUMERATOR_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_GPUINFO_MANAGER_H_ #ifndef SHELL_BROWSER_API_GPUINFO_MANAGER_H_
#define ATOM_BROWSER_API_GPUINFO_MANAGER_H_ #define SHELL_BROWSER_API_GPUINFO_MANAGER_H_
#include <memory> #include <memory>
#include <unordered_set> #include <unordered_set>
@ -46,4 +46,4 @@ class GPUInfoManager : public content::GpuDataManagerObserver {
}; };
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_GPUINFO_MANAGER_H_ #endif // SHELL_BROWSER_API_GPUINFO_MANAGER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_PROCESS_METRIC_H_ #ifndef SHELL_BROWSER_API_PROCESS_METRIC_H_
#define ATOM_BROWSER_API_PROCESS_METRIC_H_ #define SHELL_BROWSER_API_PROCESS_METRIC_H_
#include <memory> #include <memory>
@ -43,4 +43,4 @@ struct ProcessMetric {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_PROCESS_METRIC_H_ #endif // SHELL_BROWSER_API_PROCESS_METRIC_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_SAVE_PAGE_HANDLER_H_ #ifndef SHELL_BROWSER_API_SAVE_PAGE_HANDLER_H_
#define ATOM_BROWSER_API_SAVE_PAGE_HANDLER_H_ #define SHELL_BROWSER_API_SAVE_PAGE_HANDLER_H_
#include <string> #include <string>
@ -54,4 +54,4 @@ class SavePageHandler : public content::DownloadManager::Observer,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_SAVE_PAGE_HANDLER_H_ #endif // SHELL_BROWSER_API_SAVE_PAGE_HANDLER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_STREAM_SUBSCRIBER_H_ #ifndef SHELL_BROWSER_API_STREAM_SUBSCRIBER_H_
#define ATOM_BROWSER_API_STREAM_SUBSCRIBER_H_ #define SHELL_BROWSER_API_STREAM_SUBSCRIBER_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -65,4 +65,4 @@ class StreamSubscriber
} // namespace mate } // namespace mate
#endif // ATOM_BROWSER_API_STREAM_SUBSCRIBER_H_ #endif // SHELL_BROWSER_API_STREAM_SUBSCRIBER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_TRACKABLE_OBJECT_H_ #ifndef SHELL_BROWSER_API_TRACKABLE_OBJECT_H_
#define ATOM_BROWSER_API_TRACKABLE_OBJECT_H_ #define SHELL_BROWSER_API_TRACKABLE_OBJECT_H_
#include <vector> #include <vector>
@ -134,4 +134,4 @@ atom::KeyWeakMap<int32_t>* TrackableObject<T>::weak_map_ = nullptr;
} // namespace mate } // namespace mate
#endif // ATOM_BROWSER_API_TRACKABLE_OBJECT_H_ #endif // SHELL_BROWSER_API_TRACKABLE_OBJECT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_ #ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
#define ATOM_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_ #define SHELL_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_
#include "native_mate/handle.h" #include "native_mate/handle.h"
#include "shell/browser/api/views/atom_api_layout_manager.h" #include "shell/browser/api/views/atom_api_layout_manager.h"
@ -37,4 +37,4 @@ class BoxLayout : public LayoutManager {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_ #endif // SHELL_BROWSER_API_VIEWS_ATOM_API_BOX_LAYOUT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_ #ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
#define ATOM_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_ #define SHELL_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_
#include "native_mate/handle.h" #include "native_mate/handle.h"
#include "shell/browser/api/atom_api_view.h" #include "shell/browser/api/atom_api_view.h"
@ -37,4 +37,4 @@ class Button : public View, public views::ButtonListener {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_ #endif // SHELL_BROWSER_API_VIEWS_ATOM_API_BUTTON_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_ #ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
#define ATOM_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_ #define SHELL_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_
#include <string> #include <string>
@ -44,4 +44,4 @@ class LabelButton : public Button {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_ #endif // SHELL_BROWSER_API_VIEWS_ATOM_API_LABEL_BUTTON_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_ #ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
#define ATOM_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_ #define SHELL_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_
#include <memory> #include <memory>
@ -41,4 +41,4 @@ class LayoutManager : public mate::TrackableObject<LayoutManager> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_ #endif // SHELL_BROWSER_API_VIEWS_ATOM_API_LAYOUT_MANAGER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_ #ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
#define ATOM_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_ #define SHELL_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_
#include <string> #include <string>
@ -38,4 +38,4 @@ class MdTextButton : public LabelButton {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_ #endif // SHELL_BROWSER_API_VIEWS_ATOM_API_MD_TEXT_BUTTON_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_ #ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
#define ATOM_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_ #define SHELL_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_
#include "native_mate/handle.h" #include "native_mate/handle.h"
#include "shell/browser/api/atom_api_view.h" #include "shell/browser/api/atom_api_view.h"
@ -40,4 +40,4 @@ class ResizeArea : public View, protected views::ResizeAreaDelegate {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_ #endif // SHELL_BROWSER_API_VIEWS_ATOM_API_RESIZE_AREA_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_ #ifndef SHELL_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
#define ATOM_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_ #define SHELL_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_
#include "native_mate/handle.h" #include "native_mate/handle.h"
#include "shell/browser/api/atom_api_view.h" #include "shell/browser/api/atom_api_view.h"
@ -39,4 +39,4 @@ class TextField : public View {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_ #endif // SHELL_BROWSER_API_VIEWS_ATOM_API_TEXT_FIELD_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_BLOB_READER_H_ #ifndef SHELL_BROWSER_ATOM_BLOB_READER_H_
#define ATOM_BROWSER_ATOM_BLOB_READER_H_ #define SHELL_BROWSER_ATOM_BLOB_READER_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -72,4 +72,4 @@ class AtomBlobReader {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_BLOB_READER_H_ #endif // SHELL_BROWSER_ATOM_BLOB_READER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_ #ifndef SHELL_BROWSER_ATOM_BROWSER_CLIENT_H_
#define ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_ #define SHELL_BROWSER_ATOM_BROWSER_CLIENT_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -260,4 +260,4 @@ class AtomBrowserClient : public content::ContentBrowserClient,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_BROWSER_CLIENT_H_ #endif // SHELL_BROWSER_ATOM_BROWSER_CLIENT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_ #ifndef SHELL_BROWSER_ATOM_BROWSER_CONTEXT_H_
#define ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_ #define SHELL_BROWSER_ATOM_BROWSER_CONTEXT_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -177,4 +177,4 @@ class AtomBrowserContext
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_ #endif // SHELL_BROWSER_ATOM_BROWSER_CONTEXT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_BROWSER_MAIN_PARTS_H_ #ifndef SHELL_BROWSER_ATOM_BROWSER_MAIN_PARTS_H_
#define ATOM_BROWSER_ATOM_BROWSER_MAIN_PARTS_H_ #define SHELL_BROWSER_ATOM_BROWSER_MAIN_PARTS_H_
#include <list> #include <list>
#include <memory> #include <memory>
@ -143,4 +143,4 @@ class AtomBrowserMainParts : public content::BrowserMainParts {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_BROWSER_MAIN_PARTS_H_ #endif // SHELL_BROWSER_ATOM_BROWSER_MAIN_PARTS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_DOWNLOAD_MANAGER_DELEGATE_H_ #ifndef SHELL_BROWSER_ATOM_DOWNLOAD_MANAGER_DELEGATE_H_
#define ATOM_BROWSER_ATOM_DOWNLOAD_MANAGER_DELEGATE_H_ #define SHELL_BROWSER_ATOM_DOWNLOAD_MANAGER_DELEGATE_H_
#include <string> #include <string>
@ -58,4 +58,4 @@ class AtomDownloadManagerDelegate : public content::DownloadManagerDelegate {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_DOWNLOAD_MANAGER_DELEGATE_H_ #endif // SHELL_BROWSER_ATOM_DOWNLOAD_MANAGER_DELEGATE_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_GPU_CLIENT_H_ #ifndef SHELL_BROWSER_ATOM_GPU_CLIENT_H_
#define ATOM_BROWSER_ATOM_GPU_CLIENT_H_ #define SHELL_BROWSER_ATOM_GPU_CLIENT_H_
#include "content/public/gpu/content_gpu_client.h" #include "content/public/gpu/content_gpu_client.h"
@ -22,4 +22,4 @@ class AtomGpuClient : public content::ContentGpuClient {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_GPU_CLIENT_H_ #endif // SHELL_BROWSER_ATOM_GPU_CLIENT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_ #ifndef SHELL_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
#define ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_ #define SHELL_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
#include <map> #include <map>
#include <string> #include <string>
@ -48,4 +48,4 @@ class AtomJavaScriptDialogManager : public content::JavaScriptDialogManager {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_ #endif // SHELL_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_NAVIGATION_THROTTLE_H_ #ifndef SHELL_BROWSER_ATOM_NAVIGATION_THROTTLE_H_
#define ATOM_BROWSER_ATOM_NAVIGATION_THROTTLE_H_ #define SHELL_BROWSER_ATOM_NAVIGATION_THROTTLE_H_
#include "content/public/browser/navigation_throttle.h" #include "content/public/browser/navigation_throttle.h"
@ -24,4 +24,4 @@ class AtomNavigationThrottle : public content::NavigationThrottle {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_NAVIGATION_THROTTLE_H_ #endif // SHELL_BROWSER_ATOM_NAVIGATION_THROTTLE_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_PATHS_H_ #ifndef SHELL_BROWSER_ATOM_PATHS_H_
#define ATOM_BROWSER_ATOM_PATHS_H_ #define SHELL_BROWSER_ATOM_PATHS_H_
#include "base/base_paths.h" #include "base/base_paths.h"
@ -47,4 +47,4 @@ static_assert(PATH_START < PATH_END, "invalid PATH boundaries");
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_PATHS_H_ #endif // SHELL_BROWSER_ATOM_PATHS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_PERMISSION_MANAGER_H_ #ifndef SHELL_BROWSER_ATOM_PERMISSION_MANAGER_H_
#define ATOM_BROWSER_ATOM_PERMISSION_MANAGER_H_ #define SHELL_BROWSER_ATOM_PERMISSION_MANAGER_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -112,4 +112,4 @@ class AtomPermissionManager : public content::PermissionControllerDelegate {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_PERMISSION_MANAGER_H_ #endif // SHELL_BROWSER_ATOM_PERMISSION_MANAGER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_QUOTA_PERMISSION_CONTEXT_H_ #ifndef SHELL_BROWSER_ATOM_QUOTA_PERMISSION_CONTEXT_H_
#define ATOM_BROWSER_ATOM_QUOTA_PERMISSION_CONTEXT_H_ #define SHELL_BROWSER_ATOM_QUOTA_PERMISSION_CONTEXT_H_
#include "content/public/browser/quota_permission_context.h" #include "content/public/browser/quota_permission_context.h"
#include "content/public/common/storage_quota_params.h" #include "content/public/common/storage_quota_params.h"
@ -29,4 +29,4 @@ class AtomQuotaPermissionContext : public content::QuotaPermissionContext {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_QUOTA_PERMISSION_CONTEXT_H_ #endif // SHELL_BROWSER_ATOM_QUOTA_PERMISSION_CONTEXT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_ #ifndef SHELL_BROWSER_ATOM_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
#define ATOM_BROWSER_ATOM_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_ #define SHELL_BROWSER_ATOM_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
#include <string> #include <string>
#include <vector> #include <vector>
@ -53,4 +53,4 @@ class AtomSpeechRecognitionManagerDelegate
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_ #endif // SHELL_BROWSER_ATOM_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_ATOM_WEB_UI_CONTROLLER_FACTORY_H_ #ifndef SHELL_BROWSER_ATOM_WEB_UI_CONTROLLER_FACTORY_H_
#define ATOM_BROWSER_ATOM_WEB_UI_CONTROLLER_FACTORY_H_ #define SHELL_BROWSER_ATOM_WEB_UI_CONTROLLER_FACTORY_H_
#include <memory> #include <memory>
@ -40,4 +40,4 @@ class AtomWebUIControllerFactory : public content::WebUIControllerFactory {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_ATOM_WEB_UI_CONTROLLER_FACTORY_H_ #endif // SHELL_BROWSER_ATOM_WEB_UI_CONTROLLER_FACTORY_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_AUTO_UPDATER_H_ #ifndef SHELL_BROWSER_AUTO_UPDATER_H_
#define ATOM_BROWSER_AUTO_UPDATER_H_ #define SHELL_BROWSER_AUTO_UPDATER_H_
#include <map> #include <map>
#include <string> #include <string>
@ -67,4 +67,4 @@ class AutoUpdater {
} // namespace auto_updater } // namespace auto_updater
#endif // ATOM_BROWSER_AUTO_UPDATER_H_ #endif // SHELL_BROWSER_AUTO_UPDATER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_BROWSER_H_ #ifndef SHELL_BROWSER_BROWSER_H_
#define ATOM_BROWSER_BROWSER_H_ #define SHELL_BROWSER_BROWSER_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -314,4 +314,4 @@ class Browser : public WindowListObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_BROWSER_H_ #endif // SHELL_BROWSER_BROWSER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_BROWSER_OBSERVER_H_ #ifndef SHELL_BROWSER_BROWSER_OBSERVER_H_
#define ATOM_BROWSER_BROWSER_OBSERVER_H_ #define SHELL_BROWSER_BROWSER_OBSERVER_H_
#include <string> #include <string>
@ -89,4 +89,4 @@ class BrowserObserver : public base::CheckedObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_BROWSER_OBSERVER_H_ #endif // SHELL_BROWSER_BROWSER_OBSERVER_H_

View file

@ -7,8 +7,8 @@
// will return NULL if the service is not available, so callers must check for // will return NULL if the service is not available, so callers must check for
// this condition. // this condition.
#ifndef ATOM_BROWSER_BROWSER_PROCESS_IMPL_H_ #ifndef SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
#define ATOM_BROWSER_BROWSER_PROCESS_IMPL_H_ #define SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -127,4 +127,4 @@ class BrowserProcessImpl : public BrowserProcess {
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
}; };
#endif // ATOM_BROWSER_BROWSER_PROCESS_IMPL_H_ #endif // SHELL_BROWSER_BROWSER_PROCESS_IMPL_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_ #ifndef SHELL_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_
#define ATOM_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_ #define SHELL_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_
#include <string> #include <string>
@ -29,4 +29,4 @@ struct ChildWebContentsTracker
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_ #endif // SHELL_BROWSER_CHILD_WEB_CONTENTS_TRACKER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_COMMON_WEB_CONTENTS_DELEGATE_H_ #ifndef SHELL_BROWSER_COMMON_WEB_CONTENTS_DELEGATE_H_
#define ATOM_BROWSER_COMMON_WEB_CONTENTS_DELEGATE_H_ #define SHELL_BROWSER_COMMON_WEB_CONTENTS_DELEGATE_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -215,4 +215,4 @@ class CommonWebContentsDelegate : public content::WebContentsDelegate,
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_COMMON_WEB_CONTENTS_DELEGATE_H_ #endif // SHELL_BROWSER_COMMON_WEB_CONTENTS_DELEGATE_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_COOKIE_CHANGE_NOTIFIER_H_ #ifndef SHELL_BROWSER_COOKIE_CHANGE_NOTIFIER_H_
#define ATOM_BROWSER_COOKIE_CHANGE_NOTIFIER_H_ #define SHELL_BROWSER_COOKIE_CHANGE_NOTIFIER_H_
#include <memory> #include <memory>
@ -45,4 +45,4 @@ class CookieChangeNotifier : public network::mojom::CookieChangeListener {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_COOKIE_CHANGE_NOTIFIER_H_ #endif // SHELL_BROWSER_COOKIE_CHANGE_NOTIFIER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_FAKE_LOCATION_PROVIDER_H_ #ifndef SHELL_BROWSER_FAKE_LOCATION_PROVIDER_H_
#define ATOM_BROWSER_FAKE_LOCATION_PROVIDER_H_ #define SHELL_BROWSER_FAKE_LOCATION_PROVIDER_H_
#include "base/macros.h" #include "base/macros.h"
#include "services/device/public/cpp/geolocation/location_provider.h" #include "services/device/public/cpp/geolocation/location_provider.h"
@ -33,4 +33,4 @@ class FakeLocationProvider : public device::LocationProvider {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_FAKE_LOCATION_PROVIDER_H_ #endif // SHELL_BROWSER_FAKE_LOCATION_PROVIDER_H_

View file

@ -2,11 +2,11 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_FEATURE_LIST_H_ #ifndef SHELL_BROWSER_FEATURE_LIST_H_
#define ATOM_BROWSER_FEATURE_LIST_H_ #define SHELL_BROWSER_FEATURE_LIST_H_
namespace atom { namespace atom {
void InitializeFeatureList(); void InitializeFeatureList();
} }
#endif // ATOM_BROWSER_FEATURE_LIST_H_ #endif // SHELL_BROWSER_FEATURE_LIST_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_FONT_DEFAULTS_H_ #ifndef SHELL_BROWSER_FONT_DEFAULTS_H_
#define ATOM_BROWSER_FONT_DEFAULTS_H_ #define SHELL_BROWSER_FONT_DEFAULTS_H_
namespace content { namespace content {
struct WebPreferences; struct WebPreferences;
@ -15,4 +15,4 @@ void SetFontDefaults(content::WebPreferences* prefs);
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_FONT_DEFAULTS_H_ #endif // SHELL_BROWSER_FONT_DEFAULTS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_IO_THREAD_H_ #ifndef SHELL_BROWSER_IO_THREAD_H_
#define ATOM_BROWSER_IO_THREAD_H_ #define SHELL_BROWSER_IO_THREAD_H_
#include <memory> #include <memory>
#include <set> #include <set>
@ -72,4 +72,4 @@ class IOThread : public content::BrowserThreadDelegate {
DISALLOW_COPY_AND_ASSIGN(IOThread); DISALLOW_COPY_AND_ASSIGN(IOThread);
}; };
#endif // ATOM_BROWSER_IO_THREAD_H_ #endif // SHELL_BROWSER_IO_THREAD_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_JAVASCRIPT_ENVIRONMENT_H_ #ifndef SHELL_BROWSER_JAVASCRIPT_ENVIRONMENT_H_
#define ATOM_BROWSER_JAVASCRIPT_ENVIRONMENT_H_ #define SHELL_BROWSER_JAVASCRIPT_ENVIRONMENT_H_
#include <memory> #include <memory>
@ -66,4 +66,4 @@ class NodeEnvironment {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_JAVASCRIPT_ENVIRONMENT_H_ #endif // SHELL_BROWSER_JAVASCRIPT_ENVIRONMENT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_LIB_BLUETOOTH_CHOOSER_H_ #ifndef SHELL_BROWSER_LIB_BLUETOOTH_CHOOSER_H_
#define ATOM_BROWSER_LIB_BLUETOOTH_CHOOSER_H_ #define SHELL_BROWSER_LIB_BLUETOOTH_CHOOSER_H_
#include <map> #include <map>
#include <string> #include <string>
@ -47,4 +47,4 @@ class BluetoothChooser : public content::BluetoothChooser {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_LIB_BLUETOOTH_CHOOSER_H_ #endif // SHELL_BROWSER_LIB_BLUETOOTH_CHOOSER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_LIB_POWER_OBSERVER_H_ #ifndef SHELL_BROWSER_LIB_POWER_OBSERVER_H_
#define ATOM_BROWSER_LIB_POWER_OBSERVER_H_ #define SHELL_BROWSER_LIB_POWER_OBSERVER_H_
#include "base/macros.h" #include "base/macros.h"
@ -23,4 +23,4 @@ typedef base::PowerObserver PowerObserver;
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_LIB_POWER_OBSERVER_H_ #endif // SHELL_BROWSER_LIB_POWER_OBSERVER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_LIB_POWER_OBSERVER_LINUX_H_ #ifndef SHELL_BROWSER_LIB_POWER_OBSERVER_LINUX_H_
#define ATOM_BROWSER_LIB_POWER_OBSERVER_LINUX_H_ #define SHELL_BROWSER_LIB_POWER_OBSERVER_LINUX_H_
#include <string> #include <string>
@ -51,4 +51,4 @@ class PowerObserverLinux : public base::PowerObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_LIB_POWER_OBSERVER_LINUX_H_ #endif // SHELL_BROWSER_LIB_POWER_OBSERVER_LINUX_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_ #ifndef SHELL_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_
#define ATOM_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_ #define SHELL_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_
#include <memory> #include <memory>
@ -41,4 +41,4 @@ class LayeredResourceHandler : public content::LayeredResourceHandler {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_ #endif // SHELL_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_LOGIN_HANDLER_H_ #ifndef SHELL_BROWSER_LOGIN_HANDLER_H_
#define ATOM_BROWSER_LOGIN_HANDLER_H_ #define SHELL_BROWSER_LOGIN_HANDLER_H_
#include <memory> #include <memory>
@ -74,4 +74,4 @@ class LoginHandler : public base::RefCountedThreadSafe<LoginHandler> {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_LOGIN_HANDLER_H_ #endif // SHELL_BROWSER_LOGIN_HANDLER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_MAC_DICT_UTIL_H_ #ifndef SHELL_BROWSER_MAC_DICT_UTIL_H_
#define ATOM_BROWSER_MAC_DICT_UTIL_H_ #define SHELL_BROWSER_MAC_DICT_UTIL_H_
#include <memory> #include <memory>
@ -27,4 +27,4 @@ std::unique_ptr<base::DictionaryValue> NSDictionaryToDictionaryValue(
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_MAC_DICT_UTIL_H_ #endif // SHELL_BROWSER_MAC_DICT_UTIL_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_MAC_IN_APP_PURCHASE_H_ #ifndef SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_
#define ATOM_BROWSER_MAC_IN_APP_PURCHASE_H_ #define SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_
#include <string> #include <string>
@ -31,4 +31,4 @@ void PurchaseProduct(const std::string& productID,
} // namespace in_app_purchase } // namespace in_app_purchase
#endif // ATOM_BROWSER_MAC_IN_APP_PURCHASE_H_ #endif // SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_MAC_IN_APP_PURCHASE_OBSERVER_H_ #ifndef SHELL_BROWSER_MAC_IN_APP_PURCHASE_OBSERVER_H_
#define ATOM_BROWSER_MAC_IN_APP_PURCHASE_OBSERVER_H_ #define SHELL_BROWSER_MAC_IN_APP_PURCHASE_OBSERVER_H_
#include <string> #include <string>
#include <vector> #include <vector>
@ -60,4 +60,4 @@ class TransactionObserver {
} // namespace in_app_purchase } // namespace in_app_purchase
#endif // ATOM_BROWSER_MAC_IN_APP_PURCHASE_OBSERVER_H_ #endif // SHELL_BROWSER_MAC_IN_APP_PURCHASE_OBSERVER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_MAC_IN_APP_PURCHASE_PRODUCT_H_ #ifndef SHELL_BROWSER_MAC_IN_APP_PURCHASE_PRODUCT_H_
#define ATOM_BROWSER_MAC_IN_APP_PURCHASE_PRODUCT_H_ #define SHELL_BROWSER_MAC_IN_APP_PURCHASE_PRODUCT_H_
#include <string> #include <string>
#include <vector> #include <vector>
@ -48,4 +48,4 @@ void GetProducts(const std::vector<std::string>& productIDs,
} // namespace in_app_purchase } // namespace in_app_purchase
#endif // ATOM_BROWSER_MAC_IN_APP_PURCHASE_PRODUCT_H_ #endif // SHELL_BROWSER_MAC_IN_APP_PURCHASE_PRODUCT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef ATOM_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ #ifndef SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
#define ATOM_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ #define SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
#include <string> #include <string>
@ -87,4 +87,4 @@ class MediaCaptureDevicesDispatcher : public content::MediaObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ #endif // SHELL_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_ #ifndef SHELL_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_
#define ATOM_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_ #define SHELL_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_
#include <string> #include <string>
@ -36,4 +36,4 @@ class MediaDeviceIDSalt {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_ #endif // SHELL_BROWSER_MEDIA_MEDIA_DEVICE_ID_SALT_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file. // found in the LICENSE-CHROMIUM file.
#ifndef ATOM_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ #ifndef SHELL_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_
#define ATOM_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ #define SHELL_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_
#include "content/public/browser/web_contents_delegate.h" #include "content/public/browser/web_contents_delegate.h"
#include "third_party/blink/public/common/mediastream/media_stream_request.h" #include "third_party/blink/public/common/mediastream/media_stream_request.h"
@ -43,4 +43,4 @@ class MediaStreamDevicesController {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_ #endif // SHELL_BROWSER_MEDIA_MEDIA_STREAM_DEVICES_CONTROLLER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_MICROTASKS_RUNNER_H_ #ifndef SHELL_BROWSER_MICROTASKS_RUNNER_H_
#define ATOM_BROWSER_MICROTASKS_RUNNER_H_ #define SHELL_BROWSER_MICROTASKS_RUNNER_H_
#include "base/message_loop/message_loop.h" #include "base/message_loop/message_loop.h"
@ -33,4 +33,4 @@ class MicrotasksRunner : public base::MessageLoop::TaskObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_MICROTASKS_RUNNER_H_ #endif // SHELL_BROWSER_MICROTASKS_RUNNER_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_BROWSER_VIEW_H_ #ifndef SHELL_BROWSER_NATIVE_BROWSER_VIEW_H_
#define ATOM_BROWSER_NATIVE_BROWSER_VIEW_H_ #define SHELL_BROWSER_NATIVE_BROWSER_VIEW_H_
#include <vector> #include <vector>
@ -60,4 +60,4 @@ class NativeBrowserView {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_NATIVE_BROWSER_VIEW_H_ #endif // SHELL_BROWSER_NATIVE_BROWSER_VIEW_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_BROWSER_VIEW_MAC_H_ #ifndef SHELL_BROWSER_NATIVE_BROWSER_VIEW_MAC_H_
#define ATOM_BROWSER_NATIVE_BROWSER_VIEW_MAC_H_ #define SHELL_BROWSER_NATIVE_BROWSER_VIEW_MAC_H_
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#include <vector> #include <vector>
@ -32,4 +32,4 @@ class NativeBrowserViewMac : public NativeBrowserView {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_NATIVE_BROWSER_VIEW_MAC_H_ #endif // SHELL_BROWSER_NATIVE_BROWSER_VIEW_MAC_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_BROWSER_VIEW_VIEWS_H_ #ifndef SHELL_BROWSER_NATIVE_BROWSER_VIEW_VIEWS_H_
#define ATOM_BROWSER_NATIVE_BROWSER_VIEW_VIEWS_H_ #define SHELL_BROWSER_NATIVE_BROWSER_VIEW_VIEWS_H_
#include "shell/browser/native_browser_view.h" #include "shell/browser/native_browser_view.h"
@ -44,4 +44,4 @@ class NativeBrowserViewViews : public NativeBrowserView {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_NATIVE_BROWSER_VIEW_VIEWS_H_ #endif // SHELL_BROWSER_NATIVE_BROWSER_VIEW_VIEWS_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_WINDOW_H_ #ifndef SHELL_BROWSER_NATIVE_WINDOW_H_
#define ATOM_BROWSER_NATIVE_WINDOW_H_ #define SHELL_BROWSER_NATIVE_WINDOW_H_
#include <list> #include <list>
#include <map> #include <map>
@ -378,4 +378,4 @@ class NativeWindowRelay
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_NATIVE_WINDOW_H_ #endif // SHELL_BROWSER_NATIVE_WINDOW_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_WINDOW_MAC_H_ #ifndef SHELL_BROWSER_NATIVE_WINDOW_MAC_H_
#define ATOM_BROWSER_NATIVE_WINDOW_MAC_H_ #define SHELL_BROWSER_NATIVE_WINDOW_MAC_H_
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
@ -226,4 +226,4 @@ class NativeWindowMac : public NativeWindow {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_NATIVE_WINDOW_MAC_H_ #endif // SHELL_BROWSER_NATIVE_WINDOW_MAC_H_

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by the MIT license that can be // Use of this source code is governed by the MIT license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_WINDOW_OBSERVER_H_ #ifndef SHELL_BROWSER_NATIVE_WINDOW_OBSERVER_H_
#define ATOM_BROWSER_NATIVE_WINDOW_OBSERVER_H_ #define SHELL_BROWSER_NATIVE_WINDOW_OBSERVER_H_
#include <string> #include <string>
@ -101,4 +101,4 @@ class NativeWindowObserver : public base::CheckedObserver {
} // namespace atom } // namespace atom
#endif // ATOM_BROWSER_NATIVE_WINDOW_OBSERVER_H_ #endif // SHELL_BROWSER_NATIVE_WINDOW_OBSERVER_H_

Some files were not shown because too many files have changed in this diff Show more