summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger
Commit message (Collapse)AuthorAgeFilesLines
* DevTools: handle the case where client host is disposed while in the list of ↵pfeldman@chromium.org2009-11-082-17/+23
| | | | | | | | orphan ones. Review URL: http://codereview.chromium.org/374029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31409 0039d316-1c4b-4281-b951-d872f2087c98
* Ninth patch in making destructors of refcounted objects private.jam@chromium.org2009-11-074-4/+13
| | | | | | | | BUG=26749 Review URL: http://codereview.chromium.org/372013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31357 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: add pause on exception testyurys@google.com2009-11-071-0/+7
| | | | | | Review URL: http://codereview.chromium.org/353020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31354 0039d316-1c4b-4281-b951-d872f2087c98
* Tenth patch in making destructors of refcounted objects private.jam@chromium.org2009-11-075-7/+10
| | | | | | | | BUG=26749 Review URL: http://codereview.chromium.org/376007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31348 0039d316-1c4b-4281-b951-d872f2087c98
* Reenabled a bunch of interactive UI tests on Linux,jcampan@chromium.org2009-11-071-0/+3
| | | | | | | | | | | | one of them still fails. BUG=26540 TEST=Run interactive ui tests on Linux. TBR=willchan Review URL: http://codereview.chromium.org/374021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31345 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: provide a way for clients to detach and attach client hosts to ↵pfeldman@chromium.org2009-11-062-11/+57
| | | | | | | | | | render views. BUG=25287 Review URL: http://codereview.chromium.org/375011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31302 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Follow up to r31226. Fixed one of the toggledevtools calls.pfeldman@chromium.org2009-11-062-2/+4
| | | | | | | tbr=apavlov git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31229 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Wire Ctrl+Shift+C to "Show JavaScript console".pfeldman@chromium.org2009-11-064-12/+37
| | | | | | Review URL: http://codereview.chromium.org/377005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31225 0039d316-1c4b-4281-b951-d872f2087c98
* Fourth patch in making destructors of refcounted objects private.jam@chromium.org2009-11-051-1/+1
| | | | | | | BUG=26749 Review URL: http://codereview.chromium.org/360043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31167 0039d316-1c4b-4281-b951-d872f2087c98
* Highlight node with mouse over it while selecting element to inspectapavlov@chromium.org2009-11-052-10/+0
| | | | | | | | | BUG=20969 TEST=none Review URL: http://codereview.chromium.org/348056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31087 0039d316-1c4b-4281-b951-d872f2087c98
* Disable failing in-process-browser interactive_ui_tests.rafaelw@chromium.org2009-11-031-5/+0
| | | | | | | | BUG=26540 Review URL: http://codereview.chromium.org/341078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30835 0039d316-1c4b-4281-b951-d872f2087c98
* Disable failing DevToolsSanityTests on linux.rafaelw@chromium.org2009-11-031-0/+4
| | | | | | | | BUG=26540 Review URL: http://codereview.chromium.org/341075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30776 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: report correct content length for resources.yurys@google.com2009-11-021-0/+6
| | | | | | | | | | | | Currently lengthReceived always has the same value as dataLength when Safari calls ResourceHandle::didReceiveData. In Chrome expected content length is passed as lengthReceived parameter which leads to incorrect content length to be stored in InspectorResource. InspectorResource expects lengthReceived to be the length of current data chunk(see InspectorResource::addLength). So I changed lengthReceived parameter to be dataLength. Darin, I see your TODO comment at line 581 in http://src.chromium.org/viewvc/chrome/trunk/src/webkit/glue/weburlloader_impl.cc?annotate=6296 (the comment was deleted later) so I think you are right person to review the change in weburlloader_impl.cc. Please look at weburlloader_impl.cc and feel free to leave devtools specific changes to Alex and Pavel. BUG=25213 TEST=DevToolsSanityTest.TestResourceContentLength Review URL: http://codereview.chromium.org/295041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30725 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: support cross-navigation instrumentation.pfeldman@chromium.org2009-11-022-6/+43
| | | | | | Review URL: http://codereview.chromium.org/343075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30713 0039d316-1c4b-4281-b951-d872f2087c98
* Third patch in getting rid of caching MessageLoop pointers and always using ↵jam@chromium.org2009-11-022-17/+18
| | | | | | | | | | ChromeThread instead. BUG=25354 Review URL: http://codereview.chromium.org/342068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30687 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: add all scripts from afterCompile events when scripts panel is ↵yurys@google.com2009-10-311-2/+19
| | | | | | | | | | shown for the first timeBUG=26312 TEST=DevToolsSanityTest.TestScriptsTabIsPopulatedOnInspectedPageRefresh Review URL: http://codereview.chromium.org/341057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30664 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Implement raw cookies access for inspector.pfeldman@chromium.org2009-10-291-24/+27
| | | | | | Review URL: http://codereview.chromium.org/294025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30457 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Webkit merge broke DevToolsSanityTest.TestEnableResourcesTabpfeldman@chromium.org2009-10-291-1/+1
| | | | | | | | | BUG=26171 TBR=yurys Review URL: http://codereview.chromium.org/340035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30456 0039d316-1c4b-4281-b951-d872f2087c98
* Disable DevToolsSanityTest.TestEnableResourcesTab after WebKit roll broke it.jorlow@chromium.org2009-10-291-1/+1
| | | | | | | | | TBR=pfeldman TEST=none BUG=26171 Review URL: http://codereview.chromium.org/339060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30416 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: fix and enable DevToolsExtensionDebugTest.TestContentScriptIsPresent.yurys@google.com2009-10-271-6/+63
| | | | | | Review URL: http://codereview.chromium.org/328029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30179 0039d316-1c4b-4281-b951-d872f2087c98
* Move the json-related files into a separate json directory. This hopefully alsobrettw@chromium.org2009-10-233-15/+15
| | | | | | | | | | | makes the naming of string_escape more clear (it's actually JSON-specific). Move the files into the base namespace. TEST=none BUG=none Review URL: http://codereview.chromium.org/316016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29934 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 29635 - DevTools: fix and enable TestContentScriptIsPresentnsylvain@chromium.org2009-10-211-1/+1
| | | | | | | | | | | The test was still failing Review URL: http://codereview.chromium.org/314001 TBR=yurys@google.com Review URL: http://codereview.chromium.org/292051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29683 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: fix and enable TestContentScriptIsPresentyurys@google.com2009-10-211-1/+1
| | | | | | Review URL: http://codereview.chromium.org/314001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29635 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: temporarily disable TestContentScriptIsPresentyurys@google.com2009-10-211-1/+1
| | | | | | | TBR=apavlov Review URL: http://codereview.chromium.org/313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29630 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: test that content scripts are visible in the debugger scripts listyurys@google.com2009-10-211-0/+67
| | | | | | | | BUG=25294,24214 TEST=DevToolsExtensionDebugTest.TestContentScriptIsPresent Review URL: http://codereview.chromium.org/295020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29623 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: enable DevToolsSanityTest.TestCompletionOnPause that failed ↵yurys@google.com2009-10-151-1/+1
| | | | | | | | | because WebKit@49557 was not rolled. BUG=24805 Review URL: http://codereview.chromium.org/271100 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29101 0039d316-1c4b-4281-b951-d872f2087c98
* More style nits.erg@google.com2009-10-141-1/+1
| | | | | | | | (Working on cleaning chrome/ so hopefully we can lint it by default.) Review URL: http://codereview.chromium.org/274040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28971 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: temporarily disable completion test which fails on Linuxyurys@google.com2009-10-141-1/+1
| | | | | | | TBR=pfeldman Review URL: http://codereview.chromium.org/274048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28964 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: support autocompletion when script is pausedyurys@google.com2009-10-141-0/+6
| | | | | | Review URL: http://codereview.chromium.org/277001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28961 0039d316-1c4b-4281-b951-d872f2087c98
* Header dependency cleanup in chrome/phajdan.jr@chromium.org2009-10-121-0/+1
| | | | | | | | | | | | - reduce header dependencies - remove things that shouldn't be #included in a header, like string_util.h and theme_resources.h! TEST=none BUG=none Review URL: http://codereview.chromium.org/245011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28705 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: fix and reenable TestDebugIntrinsicPropertiesyurys@google.com2009-10-081-1/+1
| | | | | | Review URL: http://codereview.chromium.org/268015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28389 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: enable TestProfilerTab back, as fix has been rolled in V8.mnaganov@chromium.org2009-10-071-3/+1
| | | | | | | | | BUG=23768,23961 TEST=DevToolsSanityTest.TestProfilerTab Review URL: http://codereview.chromium.org/266005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28250 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: temporarily disable failing testyurys@google.com2009-10-071-1/+1
| | | | | | | TBR=pfeldman Review URL: http://codereview.chromium.org/265008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28248 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: allow inspecting __proto__, constructor, prototype ↵yurys@google.com2009-10-071-0/+8
| | | | | | | | properties.BUG=23647 Review URL: http://codereview.chromium.org/262005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28247 0039d316-1c4b-4281-b951-d872f2087c98
* Coverity: Assert that socket() returned a successful value.jhawkins@chromium.org2009-10-061-0/+1
| | | | | | | | | CID=6384 BUG=none TEST=none Review URL: http://codereview.chromium.org/260010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28143 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: disable TestProfilerTab test due to flakiness.mnaganov@chromium.org2009-10-061-1/+3
| | | | | | | | | | | To fix it, a change needs to be made in V8. BUG=23768 TEST=none Review URL: http://codereview.chromium.org/256082 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28140 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: bring devtools tests back.pfeldman@chromium.org2009-10-061-17/+17
| | | | | | Review URL: http://codereview.chromium.org/243107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28099 0039d316-1c4b-4281-b951-d872f2087c98
* Disable a Dev Tools test that got missed.pkasting@chromium.org2009-10-051-1/+1
| | | | | | | | BUG=23858 TEST=none Review URL: http://codereview.chromium.org/242147 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28043 0039d316-1c4b-4281-b951-d872f2087c98
* Temporarily disable the dev tools unit tests. They were broken by the ↵jparent@chromium.org2009-10-051-16/+16
| | | | | | | | | | | webkit merge from 49050:49097. TEST=none BUG=23858 Review URL: http://codereview.chromium.org/257049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28036 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: test that scopes can be epxandedyurys@google.com2009-10-021-0/+7
| | | | | | Review URL: http://codereview.chromium.org/258016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27849 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: reenable step-out test as issues causing its failure on linux was ↵yurys@google.com2009-10-021-1/+1
| | | | | | | | | fixed in WebKit r48970 TBR=pfeldman Review URL: http://codereview.chromium.org/256039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27837 0039d316-1c4b-4281-b951-d872f2087c98
* Add some debugging junk to ExtensionMessageService to track down a crash.mpcomplete@chromium.org2009-10-012-1/+9
| | | | | | | | | BUG=21201 TEST=no Review URL: http://codereview.chromium.org/256029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27798 0039d316-1c4b-4281-b951-d872f2087c98
* Coverity: Initialize lock_, semaphore_, and test_socket_ in the constructor.jhawkins@chromium.org2009-10-011-2/+5
| | | | | | | | | CID=2297 BUG=none TEST=none Review URL: http://codereview.chromium.org/255007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27760 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: temorarily disable TestStepOut as it fails on Linuxyurys@google.com2009-09-301-1/+1
| | | | | | | TBR=pfeldman Review URL: http://codereview.chromium.org/256009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27603 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: add tests for step over/out/inyurys@google.com2009-09-301-0/+17
| | | | | | Review URL: http://codereview.chromium.org/248040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27600 0039d316-1c4b-4281-b951-d872f2087c98
* Fix deadlock when plugin puts an alert and right afterwards the browser ↵jam@chromium.org2009-09-281-2/+1
| | | | | | | | | | process makes a win32 call that ends up waiting on the plugin. Since the plugin thread is blocked, the Windows message doesn't get dispatched and the browser ui thread deadlocks. The message from the renderer would make the plugin run a nested message loop but it doesn't get run on the browser ui thread since it's blocked. The fix is to set the event that runs nested message loop in the renderer process. BUG=23147 TEST=ui tests already cover nested message loops and plugins. This particular scenario is hard to write a test case for because it's a race condition involving the browser. Review URL: http://codereview.chromium.org/243018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27421 0039d316-1c4b-4281-b951-d872f2087c98
* Allow the initial size of TabContentViews to be based on thetony@chromium.org2009-09-251-1/+2
| | | | | | | | | | | | | | | | size of another TabContents by having an optional TabContents* passed into the TabContents ctor. This fixes a race condition where it's possible for a web page to load before getting the sizing information from the browser. The new flow passes the size information to the renderer process before passing the URL to load. BUG=20159 Review URL: http://codereview.chromium.org/201130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27199 0039d316-1c4b-4281-b951-d872f2087c98
* Coverity: Initialize remaining_payload_length_ in the constructor.jhawkins@chromium.org2009-09-241-0/+1
| | | | | | | | | CID=2286 BUG=none TEST=none Review URL: http://codereview.chromium.org/220020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27088 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: autoresume execution on parse errors.yurys@google.com2009-09-241-0/+9
| | | | | | | | | BUG=22852 TEST=DevToolsSanityTest.TestAutoContinueOnSyntaxError Review URL: http://codereview.chromium.org/218026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27067 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 27062 since "DevTools: repair on linux and reenable breakpoint ↵yurys@google.com2009-09-241-2/+2
| | | | | | | | | | | tests" revision 27060 was not the cause of regression on Webkit Mac10.5 and Webkit Linux (dbg)(3) TBR=maruel TEST=none BUG=none Review URL: http://codereview.chromium.org/231016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27063 0039d316-1c4b-4281-b951-d872f2087c98