Skip to content

Commit

Permalink
Fix cherry pick, spaces not tabs and remove unused delegate
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Jul 1, 2014
1 parent 118a766 commit bfc9cb9
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions CefSharp/IsBrowserInitializedChangedEventArgs.cs
Expand Up @@ -6,22 +6,16 @@

namespace CefSharp
{
/// <summary>
/// Event arguments to the IsBrowserInitializedChanged event handler.
/// </summary>
public class IsBrowserInitializedChangedEventArgs : EventArgs
{
public bool IsBrowserInitialized { get; private set; }

public IsBrowserInitializedChangedEventArgs(bool isBrowserInitialized)
{
IsBrowserInitialized = isBrowserInitialized;
}
}
};

/// <summary>
/// A delegate type used to listen to IsBrowserInitializedChanged events.
/// Event arguments to the IsBrowserInitializedChanged event handler.
/// </summary>
public delegate void IsBrowserInitializedChangedEventHandler(object sender, IsBrowserInitializedChangedEventArgs args);
public class IsBrowserInitializedChangedEventArgs : EventArgs
{
public bool IsBrowserInitialized { get; private set; }

public IsBrowserInitializedChangedEventArgs(bool isBrowserInitialized)
{
IsBrowserInitialized = isBrowserInitialized;
}
}
}

0 comments on commit bfc9cb9

Please sign in to comment.