summaryrefslogtreecommitdiffstats
path: root/content/renderer/devtools/devtools_client.cc
Commit message (Collapse)AuthorAgeFilesLines
* DevTools: Support workspace files indexing in browser process.vsevik@chromium.org2013-08-051-2/+19
| | | | | | | | | | | | | | | | | This patch introduces a trigram based index for file system folders added to DevTools. Three methods are added to the interface between DevTools frontend and browser process: - IndexPath() performs indexing of the file system folder - SearchInPath() performs search in the index - StopIndexing() stops the indexing. This is needed because indexing is time consuming (seconds or even tens of seconds on huge folders). The trigram based index is essentially a map from trigram to a list of files. The search method returns a list of files matching all trigrams that are present in the search query. BUG=263313 R=pfeldman@chromium.org Review URL: https://chromiumcodereview.appspot.com/19851007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215622 0039d316-1c4b-4281-b951-d872f2087c98
* Use a direct include of the message_loop header in content/, part 4.avi@chromium.org2013-07-181-2/+2
| | | | | | | | | | BUG=260807 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/19620002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212185 0039d316-1c4b-4281-b951-d872f2087c98
* Update Blink include pathsabarth@chromium.org2013-06-171-1/+1
| | | | | | | | | | | | | This CL changes the majority of include paths from the old Source/WebKit/chromium/public to the new public/web directory. TBR=darin BUG=239545 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/17148003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206664 0039d316-1c4b-4281-b951-d872f2087c98
* Use a direct include of utf_string_conversions.h in content/.avi@chromium.org2013-06-071-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/16408017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204917 0039d316-1c4b-4281-b951-d872f2087c98
* Move webkit/appcache/* into webkit/{browser,common}/appcachekinuko@chromium.org2013-06-051-2/+2
| | | | | | | | | | | | | | | | | | This moves following files to webkit/common/appcache - appcache/appcache_interfaces* Following files to webkit/renderer/appcache - appcache/appcache_frontend_impl* - appcache/web_application_cache_host_impl* and everything else to webkit/browser/appcache. BUG=239109 TBR=avi@chromium.org, michaeln@chromium.org, thestig@chromium.org Review URL: https://codereview.chromium.org/16081004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204218 0039d316-1c4b-4281-b951-d872f2087c98
* Update refernces to Blink's Platform API (content)abarth@chromium.org2013-05-301-2/+2
| | | | | | | | | | | | | | These headers have moved from Source/Platform/chromium/public to public/platform. This CL updates content's references to the old location to point to the new location. After this CL lands, I'll remove the forwarding headers that are letting these references still work. TBR=jamesr@chromium.org BUG=239545 Review URL: https://chromiumcodereview.appspot.com/15822010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203047 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce the notion of a "layout test mode" instead of turning individual ↵jochen@chromium.org2013-05-291-12/+1
| | | | | | | | | | | flags on and off BUG=111316 R=piman@chromium.org Review URL: https://chromiumcodereview.appspot.com/16026006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202920 0039d316-1c4b-4281-b951-d872f2087c98
* AppCache: support custom schemes in appcache interfaces.pfeldman@chromium.org2013-04-031-0/+3
| | | | | | Review URL: https://codereview.chromium.org/13469005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192064 0039d316-1c4b-4281-b951-d872f2087c98
* [DevTools] Added ChangeAttachedWindowHeight method to allow DevTools to ↵dgozman@chromium.org2013-02-041-0/+4
| | | | | | | | | | | change it's window height from inside. BUG=171410 TEST=manual. Review URL: https://chromiumcodereview.appspot.com/12049014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180406 0039d316-1c4b-4281-b951-d872f2087c98
* [content shell] enable devtools frontend testing for layout testsjochen@chromium.org2013-01-251-0/+14
| | | | | | | | | | BUG=111316 R=pfeldman@chromium.org Review URL: https://chromiumcodereview.appspot.com/12039060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178822 0039d316-1c4b-4281-b951-d872f2087c98
* Support file system access in DevTools with isolated file system.vsevik@chromium.org2013-01-161-0/+14
| | | | | | | | | | BUG=167511 TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/11570081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177130 0039d316-1c4b-4281-b951-d872f2087c98
* Update some #includes in content/renderer/devtools for headers in the new ↵pilgrim@chromium.org2013-01-101-2/+2
| | | | | | | | Platform directory Review URL: https://chromiumcodereview.appspot.com/11826038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176156 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: rename debugger/ to devtools/, move DevTools files into ↵pfeldman@chromium.org2012-12-191-0/+97
| | | | | | | | | content/renderer/devtools. Review URL: https://codereview.chromium.org/11630004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173903 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r173891 - "DevTools: rename debugger/ to devtools/, move DevTools ↵mnissler@chromium.org2012-12-191-97/+0
| | | | | | | | | | | | | | | | | | | | files into content/renderer/devtools." DevToolsManagerTest.ForwardMessageToClient: http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20Tests%20x64&number=29428 http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20Aura&number=304 http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20Clang%20%28dbg%29&number=37637 http://build.chromium.org/p/chromium.chromiumos/buildstatus?builder=Linux%20ChromiumOS%20Tests%20%281%29&number=17804 http://build.chromium.org/p/chromium.memory/buildstatus?builder=Linux%20Chromium%20OS%20ASAN%20Tests%20%283%29&number=1107 BUG=None TEST=Tree becomes greener. TBR=pfeldman@chromium.org Review URL: https://codereview.chromium.org/11645015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173893 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: rename debugger/ to devtools/, move DevTools files into ↵pfeldman@chromium.org2012-12-191-0/+97
content/renderer/devtools. Review URL: https://codereview.chromium.org/11630004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173891 0039d316-1c4b-4281-b951-d872f2087c98