summaryrefslogtreecommitdiffstats
path: root/content
Commit message (Collapse)AuthorAgeFilesLines
* Change audio renderer to communicate with host using low latency codepath.enal@chromium.org2011-07-076-31/+194
| | | | | | | | | | | | | | | | | | | | | | I.e. now host signals that it is ready to accept new data using sockets, not IPC messages. That should reduce audio latency. Right now we are using high latency code path by default, low latency would be used only when flag --enable-low-latency-audio is specified. Changed unit tests to test low latency code path, as it should become default soon. http://codereview.chromium.org/7253003 BUG=http://code.google.com/p/chromium/issues/detail?id=87640 TEST=Everything should just work. I changed audio_renderer_impl_unittest.cc to explicitly force low latency code path. Review URL: http://codereview.chromium.org/7253003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91727 0039d316-1c4b-4281-b951-d872f2087c98
* The RTCVideoDecoder will eventially need to depend on third_party lib ↵wjia@chromium.org2011-07-075-0/+553
| | | | | | | | | | | | (webrtc, libjinle etc), which is not allowed in media. So move rtc_video_decoder* from media/filter/ to content/renderer/media/. patch by ronghuawu@google.com BUG=none TEST=unit_tests, media_unittests Review URL: http://codereview.chromium.org/7193001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91721 0039d316-1c4b-4281-b951-d872f2087c98
* Adding MediaStreamManager.mflodman@google.com2011-07-0712-87/+656
| | | | | | | | | | | | | | MediaStreamManager will get requests to open capture devices, normally from WebKit. MediaStreamManager will ask for user permission and then call the proper device manager to open the user specified device. MediaStreamManager now owns VideoCaptureManager, which introduces changes to VideoCaptureManager and test related to VideoCaptureManager. TODO: Find out who should own MediaStreamManager. Temporary for testing and to not block development, this is now a singleton. This will change... The next MediaStream patch, MediaStreamDispatcherHost, will contain test including MediaStreamManager. Review URL: http://codereview.chromium.org/7284037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91696 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: devtools manager should know nothing about DevToolsWindowyurys@chromium.org2011-07-078-219/+150
| | | | | | | | | | | | | | All code specific to DevToolsWindow moved into that class. There is no DevToolsClientHost::AsDevToolsWindow method anymore. To open devtools window clients should invoke corresponding static methods on DevToolsWindow which is the only way to create default devtools window. BUG=None TEST=Existing DevTools tests. Review URL: http://codereview.chromium.org/7322004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91695 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: handle docked window close in DevToolsWindow, not DevToolsManager.pfeldman@chromium.org2011-07-073-3/+10
| | | | | | | | | BUG= TEST= Review URL: http://codereview.chromium.org/7257002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91692 0039d316-1c4b-4281-b951-d872f2087c98
* Destroy egl image handles in the end of playback.vhiremath@nvidia.com2011-07-072-9/+14
| | | | | | | | | | | Clean up a couple of unused variables. BUG=NONE TEST=omx_video_decode_accelerator_unittest Review URL: http://codereview.chromium.org/7311004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91677 0039d316-1c4b-4281-b951-d872f2087c98
* ovda_unittest: sets wrap_s&t parameters to texturesashokm@nvidia.com2011-07-071-0/+3
| | | | | | | | | | | | Add the code to set wrap_s, and wrap_t parameters to textures. Bug=None Test=omx_video_decode_accelerator_unittest Review URL: http://codereview.chromium.org/7210055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91673 0039d316-1c4b-4281-b951-d872f2087c98
* Tear-down-related improvements to OVDA & OVDATest: fischman@chromium.org2011-07-074-91/+179
| | | | | | | | | | | | | | | | | | | - Documented the thread-(non)safety of OmxVideoDecodeAccelerator and added explicit safety checks, enabling: - Removed some unnecessary PostTask()'ing from methods that were already PostTask()'d. - Added unittests for early teardown of OmxVideoDecodeAccelerator. Currently DISABLED because of http://crosbug.com/p/4869. - Replaced some unnecessary (*foo)() constructs (where |foo| is a pointer-to-function) with foo() which works just as well but looks prettier. BUG=none TEST=omx_video_decode_accelerator_unittest passes on kaen Review URL: http://codereview.chromium.org/7314008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91663 0039d316-1c4b-4281-b951-d872f2087c98
* Multi-profiles: Use profile cache for menusail@chromium.org2011-07-061-0/+3
| | | | | | | | | | | | With this change we now use the new ProfileInfoCache object to get information about profiles. As per the multi-profiles UI discussion we also hide the avatar if the user only has one local profile. BUG= TEST= Review URL: http://codereview.chromium.org/7273004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91641 0039d316-1c4b-4281-b951-d872f2087c98
* Remove --indexeddb-use-leveldb command-line flag.hans@chromium.org2011-07-064-8/+13
| | | | | | | | | | | | | | | Now that LevelDB is the default back-end (see r91297), remove the command-line flag, and about:flags option. Introduce --indexeddb-use-sqlite, which is intended to be used for debugging. BUG=64078 TEST=browser_tests Review URL: http://codereview.chromium.org/7232027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91639 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Time::Explode on Windows and PepperMessageFilter::OnGetLocalTimeZoneOffset.yzshen@chromium.org2011-07-061-5/+10
| | | | | | | | | BUG=None TEST=All time unittests pass. Review URL: http://codereview.chromium.org/7282018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91602 0039d316-1c4b-4281-b951-d872f2087c98
* Disable WorkerTest.WorkerWebSocketLayoutTests temporarily.yutak@chromium.org2011-07-061-1/+3
| | | | | | | | | | | This test will be reenabled after WebSocket tests migration is complete in WebKit. BUG=88445 TEST=none TBR=dimich git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91530 0039d316-1c4b-4281-b951-d872f2087c98
* Update OVDA to handle error condition.vjain@nvidia.com2011-07-052-36/+48
| | | | | | | | | | | | | | | | | | With this changes, OVDA will inform video client of any error that has occurred while decoding. This change handles 1) NotifyError() to client. 2) Avoid calling OMX_GetState if component handle is NULL. 3) Update client_state_ after state transistion. 4) Return error value. Tested=Emulated the error condition and verified that client receives the error notification. Bug=http://code.google.com/p/chromium/issues/detail?id=88432 Review URL: http://codereview.chromium.org/7308005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91513 0039d316-1c4b-4281-b951-d872f2087c98
* Gets BackingStoreSkia to work on windows.sky@chromium.org2011-07-031-4/+4
| | | | | | | | | | BUG=none TEST=none R=brettw@chromium.org Review URL: http://codereview.chromium.org/7304005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91454 0039d316-1c4b-4281-b951-d872f2087c98
* Ensure tests check the return of SpawnChild() when they may wait without ↵rsleevi@chromium.org2011-07-023-1/+11
| | | | | | | | | | | | | | | | | | timeouts Ensure that the result of SpawnChild() is consistently checked for unittests. If an child fails to launch, SpawnChild() will return base::kNullProcessHandle. Waiting on this handle is equivalent to waiting for any child to terminate - and if there are no children, this may wait indefinitely, causing the whole test executable to timeout after 10 minutes. BUG=none TEST=none Review URL: http://codereview.chromium.org/7304008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91430 0039d316-1c4b-4281-b951-d872f2087c98
* Spin throbber even at the start of a cross-site navigation.darin@chromium.org2011-07-021-14/+14
| | | | | | | | R=creis@chromium.org Review URL: http://codereview.chromium.org/7277071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91429 0039d316-1c4b-4281-b951-d872f2087c98
* Disable AppCacheLayoutTests_NoPHPthakis@chromium.org2011-07-021-2/+2
| | | | | | | | | | | It takes 38 seconds to run and then fails. BUG=85865,54717 TEST=none Review URL: http://codereview.chromium.org/7300021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91428 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 91390 (build breakage) - Convert ViewMsg_NetworkStateChanged from ↵adamk@google.com2011-07-0211-72/+35
| | | | | | | | | | | | | | | | | | | | routed -> control allowing it to be sent from BrowserRenderProcessHost::OnProcessLaunched and minimizing the number of required IPCs (since the online state is a per-WebKit singleton). In doing so, I've disentangled online state management from TabContents: it now resides off by itself in BrowserOnlineStateObserver, a tiny class owned by BrowserProcessImpl. BUG=7469,86538 TEST=begin with network disconnected, open new tab, load test page attached to 7469, then re-connect network Review URL: http://codereview.chromium.org/7259004 TBR=eroman@chromium.org Review URL: http://codereview.chromium.org/7300018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91392 0039d316-1c4b-4281-b951-d872f2087c98
* Convert ViewMsg_NetworkStateChanged from routed -> controladamk@google.com2011-07-0111-35/+72
| | | | | | | | | | | | | | | allowing it to be sent from BrowserRenderProcessHost::OnProcessLaunched and minimizing the number of required IPCs (since the online state is a per-WebKit singleton). In doing so, I've disentangled online state management from TabContents: it now resides off by itself in BrowserOnlineStateObserver, a tiny class owned by BrowserProcessImpl. BUG=7469,86538 TEST=begin with network disconnected, open new tab, load test page attached to 7469, then re-connect network Review URL: http://codereview.chromium.org/7259004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91390 0039d316-1c4b-4281-b951-d872f2087c98
* Move the RenderViewHostDelegate::BookmarkDrag interface to Chrome as the ↵ananta@chromium.org2011-07-014-44/+0
| | | | | | | | | | | | | | feature which uses it is specific to Chrome. This interface is now part of the BookmarkTabHelper class. Fixes bug http://code.google.com/p/chromium/issues/detail?id=87682 BUG=87682 TEST=no change in functionality. Existing tests should continue to work. Review URL: http://codereview.chromium.org/7291018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91384 0039d316-1c4b-4281-b951-d872f2087c98
* Libjingle roll 66:71. Enable STUN magic cookie verification.sergeyu@chromium.org2011-07-011-6/+3
| | | | | | | | | BUG=84246 TEST=None Review URL: http://codereview.chromium.org/7283029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91375 0039d316-1c4b-4281-b951-d872f2087c98
* Attempt to get rid of extension references from RenderMessageFilter.mpcomplete@chromium.org2011-07-016-18/+25
| | | | | | | | | | BUG=76789 TEST=no Review URL: http://codereview.chromium.org/7276051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91369 0039d316-1c4b-4281-b951-d872f2087c98
* TabContentsDelegate detaches from associated TabContents in it's destructor.cbentzel@chromium.org2011-07-012-3/+104
| | | | | | | | | | BUG=85247 TEST=None Review URL: http://codereview.chromium.org/7210059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91349 0039d316-1c4b-4281-b951-d872f2087c98
* Removes pure virtual methods from TabContentsDelegate and removes allsky@chromium.org2011-07-014-34/+49
| | | | | | | | | | | | empty implementations. BUG=none TEST=none R=brettw@chromium.org Review URL: http://codereview.chromium.org/7302001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91344 0039d316-1c4b-4281-b951-d872f2087c98
* Update OVDA to handle PortSettingsChangedvjain@nvidia.com2011-07-012-12/+10
| | | | | | | | | | | when client it receive OMX_IndexParamPortDefinition. Tested=Sample plugin. Bug=88155. Review URL: http://codereview.chromium.org/7294020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91326 0039d316-1c4b-4281-b951-d872f2087c98
* GCC 4.6 -Wunused-but-set-variable cleanup.pph34r@gmail.com2011-07-012-3/+1
| | | | | | | | | | BUG=87490 TEST=None Review URL: http://codereview.chromium.org/7264013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91314 0039d316-1c4b-4281-b951-d872f2087c98
* Re-land the reverted CL:yzshen@chromium.org2011-07-016-95/+557
| | | | | | | | | | | | | | http://src.chromium.org/viewvc/chrome?view=rev&revision=91150 Comparing with the previous CL, this CL makes changes to ppapi/proxy/ppapi_proxy_test.{h,cc} TEST=None BUG=None Review URL: http://codereview.chromium.org/7210030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91310 0039d316-1c4b-4281-b951-d872f2087c98
* Coverity: Initialize member variables.jhawkins@chromium.org2011-07-011-0/+1
| | | | | | | | | | | | CID=17704,17705,17783 BUG=none TEST=none R=kmadhusu@chromium.org Review URL: http://codereview.chromium.org/7278012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91305 0039d316-1c4b-4281-b951-d872f2087c98
* Use leveldb by default, Chrome sidehans@chromium.org2011-07-014-14/+14
| | | | | | | | | | | | (Landing with fix for David Grogan, original patch here: http://codereview.chromium.org/7253026/) BUG=64078 TEST=llvm/Debug/unit_tests --gtest_filter=IndexedDBQuotaClientTest.* && llvm/Debug/browser_tests --gtest_filter=IndexedDBBrowser*:BrowsingDataIndexedDBHelperTest.* Review URL: http://codereview.chromium.org/7294018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91297 0039d316-1c4b-4281-b951-d872f2087c98
* Add the feature "Add as seach engine..." when right clicking on a form text ↵philippe.beauchamp@gmail.com2011-07-011-0/+1
| | | | | | | | | | | | | | field. Note: POST forms are not supported with this patch BUG=6872 TEST=none Review URL: http://codereview.chromium.org/335023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91253 0039d316-1c4b-4281-b951-d872f2087c98
* Printing: Store the document cookie of the current PrinterQuery onjhawkins@chromium.org2011-07-011-1/+1
| | | | | | | | | | | | | | PrintViewManager and use this to properly release the PrinterQuery when the initiator tab closes during the middle of a Printing operation. BUG=84764 TEST=none R=thestig@chromium.org Review URL: http://codereview.chromium.org/7272046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91251 0039d316-1c4b-4281-b951-d872f2087c98
* Fix lack-of-virtual-override causing some tests to not tear down TabContents ↵pkasting@chromium.org2011-06-301-1/+1
| | | | | | | | | | correctly. BUG=87998 TEST=none Review URL: http://codereview.chromium.org/7210045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91230 0039d316-1c4b-4281-b951-d872f2087c98
* Remove app from a bunch of DEPS files.tfarina@chromium.org2011-06-301-1/+0
| | | | | | | | | | | BUG=72317 TEST=None R=rsesek@chromium.org Review URL: http://codereview.chromium.org/7218065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91179 0039d316-1c4b-4281-b951-d872f2087c98
* Make kClearSiteDataOnExit work for Flash plugins in a multi-profile environment.mirandac@chromium.org2011-06-306-4/+23
| | | | | | | | | | | Because Flash data is global among all profiles (and all browsers) on a machine, we can't clear site data easily per profile on exit. Instead, if this flag is set, we run Flash instances in Incognito mode for profiles that want to leave no data stored on exit. BUG=80794 TEST= Review URL: http://codereview.chromium.org/7230052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91168 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 91150 - Define PPB_Flash_TCPSocket and PPB_Flash_SSLSocket.dpapad@chromium.org2011-06-306-557/+95
| | | | | | | | | | | | TEST=None BUG=None Review URL: http://codereview.chromium.org/7191005 TBR=yzshen@chromium.org Review URL: http://codereview.chromium.org/7293001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91153 0039d316-1c4b-4281-b951-d872f2087c98
* Define PPB_Flash_TCPSocket and PPB_Flash_SSLSocket.yzshen@chromium.org2011-06-306-95/+557
| | | | | | | | | TEST=None BUG=None Review URL: http://codereview.chromium.org/7191005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91150 0039d316-1c4b-4281-b951-d872f2087c98
* Fix include guards.joi@chromium.org2011-06-3017-51/+51
| | | | | | | | | BUG=84078 TEST=existing Review URL: http://codereview.chromium.org/7290002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91146 0039d316-1c4b-4281-b951-d872f2087c98
* For JavaScript dialogs, remove As[Type] members, expand delegates to handle ↵avi@chromium.org2011-06-303-24/+18
| | | | | | | | | | | those cases. BUG=84604 TEST=no visible change Review URL: http://codereview.chromium.org/7283022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91128 0039d316-1c4b-4281-b951-d872f2087c98
* Print Preview: Make sure web_ui() is non-NULL before notifying thejhawkins@chromium.org2011-06-301-1/+1
| | | | | | | | | | | | | | | PrintPreviewUI that the source tab has navigated. Speculative fix for the crash in Linux Views Debug bots. BUG=87964 TEST=PrintPreviewWebUITest.TestPrintPreview R=thestig@chromium.org Review URL: http://codereview.chromium.org/7284023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91088 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 91080 - broke clang. rsleevi@chromium.org2011-06-301-3/+6
| | | | | | | | | | | | | | Libjingle roll 66:68. Enable STUN magic cookie verification. BUG=83242 TEST=None Review URL: http://codereview.chromium.org/7283029 TBR=sergeyu@chromium.org Review URL: http://codereview.chromium.org/7289005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91085 0039d316-1c4b-4281-b951-d872f2087c98
* Libjingle roll 66:68. Enable STUN magic cookie verification.sergeyu@chromium.org2011-06-301-6/+3
| | | | | | | | | BUG=83242 TEST=None Review URL: http://codereview.chromium.org/7283029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91080 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Pepper plugin sandbox interface for out-of-process plugin.kochi@chromium.org2011-06-301-1/+2
| | | | | | | | | | | | | | | | | | | | On Chrome OS Flash player is running out-of-process by default, and it is failing to handle font fallback because in PpapiWebkitClientImpl SandboxSupport object is not instantiated. Without SandboxSupport instance, all the font related requests are handled locally, and fail to communicate with Fontconfig because it is sandboxed. Instantiating SandboxSupport will properly route font related requests to Sandbox IPC process to communicate to Fontconfig. BUG=87039, chromium-os:15882 TEST=Set Chrome OS to English UI and open http://weathernews.jp to see if all the characters are rendered properly. Review URL: http://codereview.chromium.org/7273062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91076 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the IsExternalTabContainer function from the TabContentsDelegate and ↵ananta@chromium.org2011-06-2910-37/+11
| | | | | | | | | | | | | | | | | | RenderViewHostDelegate interfaces as this is specifc to ChromeFrame which is a Chrome feature. This functionality has now been moved to the ContentBrowserClient interface which is implemented by the embedder (Chrome). The content source still has one chrome frame item which is the chrome-frame switch which lives in content_switches.cc/.h. That will be removed in a future CL. Fixes bug http://code.google.com/p/chromium/issues/detail?id=87686 BUG=87686 TEST=ChromeFrame should continue to work as before. Review URL: http://codereview.chromium.org/7277060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91055 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor IndexedDB quota client test in prep for leveldbdgrogan@chromium.org2011-06-291-15/+17
| | | | | | | | | | | | Abstract creation of fake indexeddb files - faking a leveldb is a few more lines Create temp dir once instead of in each test - additional leveldb-specific quota tests are forthcoming BUG= TEST=llvm/Debug/unit_tests --gtest_filter=IndexedDBQuotaClientTest.* Review URL: http://codereview.chromium.org/7274034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91034 0039d316-1c4b-4281-b951-d872f2087c98
* Printing: Pass the context menu WebNode to WebFrame::executeCommand, as thejhawkins@chromium.org2011-06-291-1/+2
| | | | | | | | | | | | | | | | node may be an embedded plugin not contained in a WebPluginDocument (and thus not able to be copied from). Depends on WebKit r89939. BUG=84511 TEST=none R=darin@chromium.org Review URL: http://codereview.chromium.org/7280001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91033 0039d316-1c4b-4281-b951-d872f2087c98
* Move app/resources/* to ui/resources/ directory.tfarina@chromium.org2011-06-291-1/+1
| | | | | | | | | | | BUG=72317 TEST=None R=rsesek@chromium.org Review URL: http://codereview.chromium.org/7253057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91010 0039d316-1c4b-4281-b951-d872f2087c98
* Prevent navigation to chrome-devtools: and chrome-internal: schemas from httpcdn@chromium.org2011-06-291-0/+3
| | | | | | | BUG=87815 Review URL: http://codereview.chromium.org/7275032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91002 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 90585 - Revert 90578 - Add a CHECK to help track use-after-free of ↵cbentzel@chromium.org2011-06-294-1/+44
| | | | | | | | | | | | | | | | | | | TabContentsDelegate from a TabContents. BUG=87411,85247 TEST=None Review URL: http://codereview.chromium.org/7260010 TBR=cbentzel@chromium.org Review URL: http://codereview.chromium.org/7253005 TBR=cbentzel@chromium.org Review URL: http://codereview.chromium.org/7276001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90993 0039d316-1c4b-4281-b951-d872f2087c98
* Implement proper synchronization between HW video decode IPC and CommandBuffer.fischman@chromium.org2011-06-2921-288/+475
| | | | | | | | | | | | | | | | | This is done by inserting tokens into the command-buffer stream when synchronization is needed, and adding a last-read/last-written token pair to each IPC message. This allowed me to remove the bogus FinishGL() calls from the gles2 sample pepper plugin. As part of this CL, the return value for VideoDecodeAccelerator::{Decode,Flush,Abort} changed from bool to void. These are all async methods so errors ought to be signaled using callbacks. BUG=none TEST=gles2 works, no crashes; trybots Review URL: http://codereview.chromium.org/7260008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90971 0039d316-1c4b-4281-b951-d872f2087c98
* Wholesale move of debugger sources to content.joi@chromium.org2011-06-2977-8/+6930
| | | | | | | | | | | | | | | | | Other references are modified only to point to the new location. Follow-up changes will move build rules for the debugger into content. This adds a somewhat permissive DEPS file to content/browser/debugger. Follow-up work will whittle that down to zero dependencies on chrome/. BUG=84078 TEST=existing Review URL: http://codereview.chromium.org/7274031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90912 0039d316-1c4b-4281-b951-d872f2087c98