| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/6621017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76956 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This makes a struct with a GURL in it display as a single line in
gdb, e.g.:
$1 = {
x_ = 123,
url_ = "file:///foo/bar"
}
As always, you can print the full GURL with all of the components
using the "p/r" command:
(gdb) p/r obj->url_
$1 = {
(parsed field offsets dump out here for 20 lines)
}
Review URL: http://codereview.chromium.org/6627015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76942 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
This just reuses the string-printing code from the WebKit module.
Review URL: http://codereview.chromium.org/6596118
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76680 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63444 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added printing for WebCore::QualifiedName.
Added a new command that will print the path from a WebCore::Node to the root.
The command is really only half-baked, but hopefully will provide a good starting point for other new commands.
(And it did help me track down an SVG bug.)
BUG=none
TEST=none
Patch from Bryan Yeung <bryeung@chromium.org>.
Review URL: http://codereview.chromium.org/598051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39215 0039d316-1c4b-4281-b951-d872f2087c98
|
|
Now I can see e.g. Indic scripts in my string literals while debugging.
Review URL: http://codereview.chromium.org/548019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36288 0039d316-1c4b-4281-b951-d872f2087c98
|