├── .gitignore ├── CEF-LICENSE.txt ├── CEF └── placeholder.txt ├── ChromeSyphon.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Data └── config.json ├── Frameworks └── Syphon.framework │ ├── Headers │ ├── Resources │ ├── Syphon │ └── Versions │ ├── A │ ├── Headers │ │ ├── Syphon.h │ │ ├── SyphonClient.h │ │ ├── SyphonImage.h │ │ ├── SyphonServer.h │ │ └── SyphonServerDirectory.h │ ├── Resources │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ └── Info.plist │ └── Syphon │ └── Current ├── README.md └── cefclient ├── binding_test.cpp ├── binding_test.h ├── cefclient.cpp ├── cefclient.h ├── cefclient_mac.mm ├── cefclient_osr_widget_mac.h ├── cefclient_osr_widget_mac.mm ├── client_app.cpp ├── client_app.h ├── client_app_delegates.cpp ├── client_handler.cpp ├── client_handler.h ├── client_handler_mac.mm ├── client_renderer.cpp ├── client_renderer.h ├── client_switches.cpp ├── client_switches.h ├── dialog_test.cpp ├── dialog_test.h ├── mac ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib ├── Info.plist ├── cefclient.icns └── helper-Info.plist ├── osrenderer.cpp ├── osrenderer.h ├── process_helper_mac.cpp ├── resource_util.h ├── resource_util_mac.mm ├── resource_util_posix.cpp ├── string_util.cpp ├── string_util.h ├── util.h ├── window_test.cpp ├── window_test.h └── window_test_mac.mm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/.gitignore -------------------------------------------------------------------------------- /CEF-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/CEF-LICENSE.txt -------------------------------------------------------------------------------- /CEF/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/CEF/placeholder.txt -------------------------------------------------------------------------------- /ChromeSyphon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/ChromeSyphon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChromeSyphon.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/ChromeSyphon.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Data/config.json -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Syphon: -------------------------------------------------------------------------------- 1 | Versions/Current/Syphon -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Headers/Syphon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Headers/Syphon.h -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Headers/SyphonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Headers/SyphonClient.h -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Headers/SyphonImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Headers/SyphonImage.h -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Headers/SyphonServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Headers/SyphonServer.h -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Headers/SyphonServerDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Headers/SyphonServerDirectory.h -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/A/Syphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/Frameworks/Syphon.framework/Versions/A/Syphon -------------------------------------------------------------------------------- /Frameworks/Syphon.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/README.md -------------------------------------------------------------------------------- /cefclient/binding_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/binding_test.cpp -------------------------------------------------------------------------------- /cefclient/binding_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/binding_test.h -------------------------------------------------------------------------------- /cefclient/cefclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/cefclient.cpp -------------------------------------------------------------------------------- /cefclient/cefclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/cefclient.h -------------------------------------------------------------------------------- /cefclient/cefclient_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/cefclient_mac.mm -------------------------------------------------------------------------------- /cefclient/cefclient_osr_widget_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/cefclient_osr_widget_mac.h -------------------------------------------------------------------------------- /cefclient/cefclient_osr_widget_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/cefclient_osr_widget_mac.mm -------------------------------------------------------------------------------- /cefclient/client_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_app.cpp -------------------------------------------------------------------------------- /cefclient/client_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_app.h -------------------------------------------------------------------------------- /cefclient/client_app_delegates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_app_delegates.cpp -------------------------------------------------------------------------------- /cefclient/client_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_handler.cpp -------------------------------------------------------------------------------- /cefclient/client_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_handler.h -------------------------------------------------------------------------------- /cefclient/client_handler_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_handler_mac.mm -------------------------------------------------------------------------------- /cefclient/client_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_renderer.cpp -------------------------------------------------------------------------------- /cefclient/client_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_renderer.h -------------------------------------------------------------------------------- /cefclient/client_switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_switches.cpp -------------------------------------------------------------------------------- /cefclient/client_switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/client_switches.h -------------------------------------------------------------------------------- /cefclient/dialog_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/dialog_test.cpp -------------------------------------------------------------------------------- /cefclient/dialog_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/dialog_test.h -------------------------------------------------------------------------------- /cefclient/mac/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | NSHumanReadableCopyright = ""; 4 | -------------------------------------------------------------------------------- /cefclient/mac/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/mac/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /cefclient/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/mac/Info.plist -------------------------------------------------------------------------------- /cefclient/mac/cefclient.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/mac/cefclient.icns -------------------------------------------------------------------------------- /cefclient/mac/helper-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/mac/helper-Info.plist -------------------------------------------------------------------------------- /cefclient/osrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/osrenderer.cpp -------------------------------------------------------------------------------- /cefclient/osrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/osrenderer.h -------------------------------------------------------------------------------- /cefclient/process_helper_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/process_helper_mac.cpp -------------------------------------------------------------------------------- /cefclient/resource_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/resource_util.h -------------------------------------------------------------------------------- /cefclient/resource_util_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/resource_util_mac.mm -------------------------------------------------------------------------------- /cefclient/resource_util_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/resource_util_posix.cpp -------------------------------------------------------------------------------- /cefclient/string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/string_util.cpp -------------------------------------------------------------------------------- /cefclient/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/string_util.h -------------------------------------------------------------------------------- /cefclient/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/util.h -------------------------------------------------------------------------------- /cefclient/window_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/window_test.cpp -------------------------------------------------------------------------------- /cefclient/window_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/window_test.h -------------------------------------------------------------------------------- /cefclient/window_test_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glowbox/ChromeSyphon/HEAD/cefclient/window_test_mac.mm --------------------------------------------------------------------------------