forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple AppDomain support & Several fixes #58
Open
joaompneves
wants to merge
255
commits into
ataranto:master
Choose a base branch
from
joaompneves:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ttp://www.magpcss.net/cef_downloads/index.php?file=cef_binary_1.1364.1123_windows.zip file. (i.e. CEF branch 1364, Chromium 25). This one is required because we're otherwise getting conflicts trying to mix stuff relying on different versions of the C++ runtime, with incompatible symbols.
…ually target 3.5 even though we're using VS2012, but that makes the build process require VS2008 SP1 (according to http://stackoverflow.com/questions/2921702/change-c-cli-project-to-another-framework-than-4-0-with-vs2010) so it might not make so much sense anyway.
…ng builds except for the WPF example.
… the SolutionDir).
… 4.0 mode (the C++ compiler creates references to internal structs which are unusable from CLR code, making the type loader throw a TypeLoadException when trying to use the WebView).
…void* in a slightly funky way… Hard to test/verify since I couldn't manage to trigger the SetPopupSizeAndPosition to be called. :)
…t we are on .NET 4.0.
…012 and 2010 respectively).
…which are soon to be added.
…r warning 4275 to be able to successfully compile).
…e layout and offset transforms to popup when display setting has non-standard DPI
Proposed fix for issue cefsharp#213 (for CefSharp1 only).
fix IME input problem (CefSharp1)
…need to implement GetViewRect() and GetScreenRect() to force the popups to always be layouted inside the view; otherwise, we run into problems when the window is e.g. located close to the bottom screen border or similar.
Added link to the license.
…1-CefSharp1, so we can work towards closing cefsharp#211.
… of the errors was introduced in the PR though, some was pre-existent)
…logical focus (since we might have logical focus even though we don't have keyboard one).
Let's add a few more remarks here.
…anged the logic for cefsharp#242 we must also change this (since without it, the caret is seen in multiple WebViews simultaneously. :)
Merge back changes already in pull requests to cefsharp/CefSharp
Conflicts: CefSharp.Wpf/CefSharp.Wpf.vcproj CefSharp.Wpf/WebView.cpp CefSharp.Wpf/WebView.h CefSharp/BindingHandler.cpp CefSharp/BindingHandler.h CefSharp/CefSharp.vcproj CefSharp/ClientAdapter.h CefSharp/RenderClientAdapter.cpp CefSharp/SchemeHandlerWrapper.h CefSharp/Stdafx.h CefSharp/TypeUtil.cpp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added support for multiple AppDomain (useful for running NUnit)
Fixed a null pointer exception that occurs when WebView is loaded.
Fixed crash on windows deactivate
Changed debugging configuration (it wasn't working)