├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── app └── win │ ├── .gitignore │ ├── brightray_example.rc │ └── resource.h ├── brightray_example.gyp ├── browser ├── browser_client.cc ├── browser_client.h ├── browser_main_parts.cc ├── browser_main_parts.h ├── linux │ └── application_info_linux.cc ├── mac │ ├── Info.plist │ ├── MainMenu.xib │ ├── WindowController.xib │ ├── window_controller.h │ ├── window_controller.mm │ ├── window_mac.h │ └── window_mac.mm ├── views │ ├── window_views.cc │ └── window_views.h ├── window.cc └── window.h ├── common ├── library_main.cc ├── library_main.h ├── main.cc ├── main_delegate.cc └── main_delegate.h ├── renderer ├── mac │ └── Info.plist ├── render_view_observer.cc ├── render_view_observer.h ├── renderer_client.cc └── renderer_client.h ├── script ├── bootstrap ├── build └── cibuild └── tools ├── linux └── copy-chrome-sandbox.sh └── mac └── create-framework-subdir-symlinks.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/README.md -------------------------------------------------------------------------------- /app/win/.gitignore: -------------------------------------------------------------------------------- 1 | /*.aps 2 | -------------------------------------------------------------------------------- /app/win/brightray_example.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/app/win/brightray_example.rc -------------------------------------------------------------------------------- /app/win/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/app/win/resource.h -------------------------------------------------------------------------------- /brightray_example.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/brightray_example.gyp -------------------------------------------------------------------------------- /browser/browser_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/browser_client.cc -------------------------------------------------------------------------------- /browser/browser_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/browser_client.h -------------------------------------------------------------------------------- /browser/browser_main_parts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/browser_main_parts.cc -------------------------------------------------------------------------------- /browser/browser_main_parts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/browser_main_parts.h -------------------------------------------------------------------------------- /browser/linux/application_info_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/linux/application_info_linux.cc -------------------------------------------------------------------------------- /browser/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/mac/Info.plist -------------------------------------------------------------------------------- /browser/mac/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/mac/MainMenu.xib -------------------------------------------------------------------------------- /browser/mac/WindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/mac/WindowController.xib -------------------------------------------------------------------------------- /browser/mac/window_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/mac/window_controller.h -------------------------------------------------------------------------------- /browser/mac/window_controller.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/mac/window_controller.mm -------------------------------------------------------------------------------- /browser/mac/window_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/mac/window_mac.h -------------------------------------------------------------------------------- /browser/mac/window_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/mac/window_mac.mm -------------------------------------------------------------------------------- /browser/views/window_views.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/views/window_views.cc -------------------------------------------------------------------------------- /browser/views/window_views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/views/window_views.h -------------------------------------------------------------------------------- /browser/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/window.cc -------------------------------------------------------------------------------- /browser/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/browser/window.h -------------------------------------------------------------------------------- /common/library_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/common/library_main.cc -------------------------------------------------------------------------------- /common/library_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/common/library_main.h -------------------------------------------------------------------------------- /common/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/common/main.cc -------------------------------------------------------------------------------- /common/main_delegate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/common/main_delegate.cc -------------------------------------------------------------------------------- /common/main_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/common/main_delegate.h -------------------------------------------------------------------------------- /renderer/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/renderer/mac/Info.plist -------------------------------------------------------------------------------- /renderer/render_view_observer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/renderer/render_view_observer.cc -------------------------------------------------------------------------------- /renderer/render_view_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/renderer/render_view_observer.h -------------------------------------------------------------------------------- /renderer/renderer_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/renderer/renderer_client.cc -------------------------------------------------------------------------------- /renderer/renderer_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/renderer/renderer_client.h -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/script/build -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/script/cibuild -------------------------------------------------------------------------------- /tools/linux/copy-chrome-sandbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/tools/linux/copy-chrome-sandbox.sh -------------------------------------------------------------------------------- /tools/mac/create-framework-subdir-symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-archive/brightray_example/HEAD/tools/mac/create-framework-subdir-symlinks.sh --------------------------------------------------------------------------------