Skip to content

Commit 3ce76eb

Browse files
committed
CEF Issue Tracker moved to GitHub
- Update some of the internal links Issue #4430
1 parent f14ecb6 commit 3ce76eb

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ It maybe helpful to run the `cefclient` application and compare output with `Cef
3232
cefclient.exe --multi-threaded-message-loop --no-sandbox
3333
```
3434
- **MAKE SURE TO TEST WITH THE COMMAND LINE ARGS LISTED ABOVE**
35-
- If you can reproduce the problem with `cefclient` then you'll need to report the bug on https://bitbucket.org/chromiumembedded/cef/overview there is no point opening an issue here. (Make sure you search before opening an issue)
35+
- If you can reproduce the problem with `cefclient` then you'll need to report the bug on https://github.com/chromiumembedded/cef there is no point opening an issue here. (Make sure you search before opening an issue)
3636

3737
### What should I include when creating an `Issue`?
3838

CefSharp.Core.Runtime/CefSettingsBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ namespace CefSharp
8888
/// **Experimental**
8989
/// Set to true to enable use of the Chrome runtime in CEF. This feature is
9090
/// considered experimental and is not recommended for most users at this time.
91-
/// See issue https://bitbucket.org/chromiumembedded/cef/issues/2969/support-chrome-windows-with-cef-callbacks for details.
91+
/// See issue https://github.com/chromiumembedded/cef/issues/2969
9292
/// </summary>
9393
property bool ChromeRuntime
9494
{

CefSharp.Core.Runtime/Internals/CefSharpApp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ namespace CefSharp
135135
commandLine->AppendSwitch(StringUtils::ToNative(CefSharpArguments::ExitIfParentProcessClosed));
136136
}
137137

138-
//ChannelId was removed in https://bitbucket.org/chromiumembedded/cef/issues/1912/notreached-in-logchannelidandcookiestores
138+
//ChannelId was removed in https://github.com/chromiumembedded/cef/issues/1912
139139
//We need to know the process Id to establish WCF communication and for monitoring of parent process exit
140140
commandLine->AppendArgument(StringUtils::ToNative(CefSharpArguments::HostProcessIdArgument + "=" + Process::GetCurrentProcess()->Id));
141141

CefSharp.Core.Runtime/Internals/ClientAdapter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ namespace CefSharp
416416
bool returnFlag = true;
417417

418418
//NOTE: Only called if tooltip changed otherwise called many times
419-
// also only called when using OSR, https://bitbucket.org/chromiumembedded/cef/issues/783
419+
// also only called when using OSR, https://github.com/chromiumembedded/cef/issues/783
420420

421421
if (hasChanged)
422422
{

CefSharp.Core/CefSettingsBase.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public CommandLineArgDictionary CefCommandLineArgs
7373
/// **Experimental**
7474
/// Set to true to enable use of the Chrome runtime in CEF. This feature is
7575
/// considered experimental and is not recommended for most users at this time.
76-
/// See issue https://bitbucket.org/chromiumembedded/cef/issues/2969/support-chrome-windows-with-cef-callbacks for details.
76+
/// See issue https://github.com/chromiumembedded/cef/issues/2969
7777
/// </summary>
7878
public bool ChromeRuntime
7979
{
@@ -424,7 +424,7 @@ public void DisableGpuAcceleration()
424424

425425
/// <summary>
426426
/// Set command line argument to enable Print Preview See
427-
/// https://bitbucket.org/chromiumembedded/cef/issues/123/add-support-for-print-preview for details.
427+
/// https://github.com/chromiumembedded/cef/issues/123/add-support-for-print-preview for details.
428428
/// </summary>
429429
public void EnablePrintPreview()
430430
{
@@ -442,7 +442,7 @@ public void SetOffScreenRenderingBestPerformanceArgs()
442442
{
443443
// Use software rendering and compositing (disable GPU) for increased FPS
444444
// and decreased CPU usage.
445-
// See https://bitbucket.org/chromiumembedded/cef/issues/1257 for details.
445+
// See https://github.com/chromiumembedded/cef/issues/1257 for details.
446446
if (!settings.CefCommandLineArgs.ContainsKey("disable-gpu"))
447447
{
448448
settings.CefCommandLineArgs.Add("disable-gpu");
@@ -459,7 +459,7 @@ public void SetOffScreenRenderingBestPerformanceArgs()
459459
// creation time via IBrowserSettings.WindowlessFrameRate or changed
460460
// dynamically using IBrowserHost.SetWindowlessFrameRate. In cefclient
461461
// it can be set via the command-line using `--off-screen-frame-rate=XX`.
462-
// See https://bitbucket.org/chromiumembedded/cef/issues/1368 for details.
462+
// See https://github.com/chromiumembedded/cef/issues/1368 for details.
463463
if (!settings.CefCommandLineArgs.ContainsKey("enable-begin-frame-scheduling"))
464464
{
465465
settings.CefCommandLineArgs.Add("enable-begin-frame-scheduling");

CefSharp.Example/CefExample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace CefSharp.Example
1414
{
1515
public static class CefExample
1616
{
17-
//TODO: Revert after https://bitbucket.org/chromiumembedded/cef/issues/2685/networkservice-custom-scheme-unable-to
17+
//TODO: Revert after https://github.com/chromiumembedded/cef/issues/2685
1818
//has been fixed.
1919
public const string ExampleDomain = "cefsharp.example";
2020
public const string BaseUrl = "https://" + ExampleDomain;
@@ -161,7 +161,7 @@ public static void Init(CefSettingsBase settings, IBrowserProcessHandler browser
161161

162162
//settings.LogSeverity = LogSeverity.Verbose;
163163

164-
//Experimental setting see https://bitbucket.org/chromiumembedded/cef/issues/2969/support-chrome-windows-with-cef-callbacks
164+
//Experimental setting see https://github.com/chromiumembedded/cef/issues/2969
165165
//for details
166166
//settings.ChromeRuntime = true;
167167

CefSharp.OffScreen/ChromiumWebBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ public async Task<byte[]> CaptureScreenshotAsync(CaptureScreenshotFormat? format
580580
throw new ArgumentException($"{nameof(viewport)}.{nameof(viewport.Scale)} must be greater than 0.");
581581
}
582582

583-
//https://bitbucket.org/chromiumembedded/cef/issues/3103/offscreen-capture-screenshot-with-devtools
583+
//https://github.com/chromiumembedded/cef/issues/3103
584584
//CEF OSR mode doesn't set the size internally when CaptureScreenShot is called with a clip param specified, so
585585
//we must manually resize our view if size is greater
586586
var newWidth = viewport.Width + viewport.X;

CefSharp.WinForms/ChromiumWebBrowser.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public IBrowserSettings BrowserSettings
137137
/// Activates browser upon creation, the default value is false. Prior to version 73
138138
/// the default behaviour was to activate browser on creation (Equivalent of setting this property to true).
139139
/// To restore this behaviour set this value to true immediately after you create the <see cref="ChromiumWebBrowser"/> instance.
140-
/// https://bitbucket.org/chromiumembedded/cef/issues/1856/branch-2526-cef-activates-browser-window
140+
/// https://github.com/chromiumembedded/cef/issues/1856
141141
/// </summary>
142142
public bool ActivateBrowserOnCreation { get; set; }
143143
/// <summary>
@@ -662,7 +662,7 @@ protected virtual IWindowInfo CreateBrowserWindowInfo(IntPtr handle)
662662
if (!ActivateBrowserOnCreation)
663663
{
664664
//Disable Window activation by default
665-
//https://bitbucket.org/chromiumembedded/cef/issues/1856/branch-2526-cef-activates-browser-window
665+
//https://github.com/chromiumembedded/cef/issues/1856/branch-2526-cef-activates-browser-window
666666
windowInfo.ExStyle |= WS_EX_NOACTIVATE;
667667
}
668668

@@ -722,7 +722,7 @@ protected virtual void OnSetBrowserInitialFocus()
722722
// It's possible to use Cef.PostAction to invoke directly on the CEF UI Thread,
723723
// this also seems to work as expected, using the WinForms UI Thread allows
724724
// us to check the Focused property to determine if we actully have focus
725-
// https://bitbucket.org/chromiumembedded/cef/issues/3436/chromium-based-browser-loses-focus-when
725+
// https://github.com/chromiumembedded/cef/issues/3436/chromium-based-browser-loses-focus-when
726726
if (InvokeRequired)
727727
{
728728
BeginInvoke((Action)(() =>

CefSharp.Wpf/ChromiumWebBrowser.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public partial class ChromiumWebBrowser : Control, IRenderWebBrowser, IWpfWebBro
140140
/// </summary>
141141
private static bool DesignMode;
142142

143-
// https://bitbucket.org/chromiumembedded/cef/issues/3427/osr-rendering-bug-when-minimizing-and
143+
// https://github.com/chromiumembedded/cef/issues/3427
144144
private bool resizeHackIgnoreOnPaint;
145145
private Structs.Size? resizeHackSize;
146146

@@ -153,7 +153,7 @@ public partial class ChromiumWebBrowser : Control, IRenderWebBrowser, IWpfWebBro
153153
/// <summary>
154154
/// When enabled the browser will resize by 1px when it becomes visible to workaround
155155
/// the upstream issue
156-
/// Hack to work around upstream issue https://bitbucket.org/chromiumembedded/cef/issues/3427/osr-rendering-bug-when-minimizing-and
156+
/// Hack to work around upstream issue https://github.com/chromiumembedded/cef/issues/3427
157157
/// Disabled by default
158158
/// </summary>
159159
public bool ResizeHackEnabled { get; set; } = false;
@@ -162,7 +162,7 @@ public partial class ChromiumWebBrowser : Control, IRenderWebBrowser, IWpfWebBro
162162
/// Number of milliseconds to wait after resizing the browser when it first
163163
/// becomes visible. After the delay the browser will revert to it's
164164
/// original size.
165-
/// Hack to workaround upstream issue https://bitbucket.org/chromiumembedded/cef/issues/3427/osr-rendering-bug-when-minimizing-and
165+
/// Hack to workaround upstream issue https://github.com/chromiumembedded/cef/issues/3427
166166
/// </summary>
167167
public int ResizeHackDelayInMs { get; set; } = 50;
168168

@@ -2793,7 +2793,7 @@ await Cef.UIThreadTaskFactory.StartNew(delegate
27932793
}
27942794

27952795
/// <summary>
2796-
/// Resize hack for https://bitbucket.org/chromiumembedded/cef/issues/3427/osr-rendering-bug-when-minimizing-and
2796+
/// Resize hack for https://github.com/chromiumembedded/cef/issues/3427/osr-rendering-bug-when-minimizing-and
27972797
/// </summary>
27982798
/// <returns>Task</returns>
27992799
private async Task ResizeHackRun()

CefSharp/Internals/PathCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal static bool IsDirectorySeparator(char c)
5050
/// <summary>
5151
/// Throw exception if the path provided is non-asbolute
5252
/// CEF now explicitly requires absolute paths
53-
/// https://bitbucket.org/chromiumembedded/cef/issues/2916/not-persisting-in-local-stoage-when-using
53+
/// https://github.com/chromiumembedded/cef/issues/2916
5454
/// Empty paths are ignored
5555
/// </summary>
5656
/// <param name="path">path</param>

0 commit comments

Comments
 (0)