- 21 May, 2012 16 commits
-
-
steveblock@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10392180 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138095 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
These are timing out on the Win (dbg) canary. BUG=128961 Review URL: https://chromiumcodereview.appspot.com/10407065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138094 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
BUG=128519 Review URL: https://chromiumcodereview.appspot.com/10399103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138093 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138091 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10417006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138090 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
This has been flaky on the Win (dbg) canary. BUG=62311 Review URL: https://chromiumcodereview.appspot.com/10387213 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138089 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
These are timing out on the Win (dbg) canary. BUG=128961 Review URL: https://chromiumcodereview.appspot.com/10411050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138088 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
These are timing out consistently on the Win (dbg) canary. BUG=128961 Review URL: https://chromiumcodereview.appspot.com/10332270 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138087 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
This fails after WebKit r117702 BUG=128959 Review URL: https://chromiumcodereview.appspot.com/10399102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138086 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138083 0039d316-1c4b-4281-b951-d872f2087c98
-
stuartmorgan@chromium.org authored
Add a minimum number of bytes when serializing logs so that a large number of very small logs won't be capped the same way as a large number of large logs. This ensures that a reasonable amount of metrics history will be kept even when logs can potentially be cut very frequently, such as Android. In the short term this may slightly increase the number of logs that are retained, since the number of logs kept by this method is the same or greater than what was kept before. BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/9562007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138081 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
This patch adds a way to simulate IME composition events inside the renderer process, and tests that IME events are properly passed between the renderer and plugins. ppapi/tests/test_ime_input_event.cc: is the actual test case ppapi/{api,c,cpp}/dev/*ime_input_event_dev*: implements an API to create IME events from plugins for testing. other files: wire necessary stuff for simulating IME events. Since Pepper IME events are not delivered through WebKit/DOM layer but rather directly sent from renderer to plugins, the simulation part also follows the similar code path. BUG=126714 TEST=browser_tests PPAPITest.ImeInputEvent Review URL: https://chromiumcodereview.appspot.com/10391101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138080 0039d316-1c4b-4281-b951-d872f2087c98
-
kinuko@chromium.org authored
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10391185 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138079 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
BUG=117262 TBR=aa@chromium.org Review URL: https://chromiumcodereview.appspot.com/10375021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138074 0039d316-1c4b-4281-b951-d872f2087c98
-
kinuko@chromium.org authored
Since r124366 we started checking file permission against ChildProcessSecurityPolicy on each operation but the current code prohibits read access on a root directory of IsolatedFileSystem, since the root directory in IsolatedFileSystem is purely virtual and has no associated platform path (to check the permission). BUG=none TEST=manual Review URL: https://chromiumcodereview.appspot.com/10106017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138073 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
The files were changed using the following sed script 1 :top 2 /SetImage/ { 3 s|ToSkBitmap|ToImageSkia|g 4 s|GetBitmapNamed|GetImageSkiaNamed|g 5 n 6 N 7 s|ToSkBitmap|ToImageSkia|g 8 s|GetBitmapNamed|GetImageSkiaNamed|g 9 b top 10 } 11 /SetBackground/ { 12 s|ToSkBitmap|ToImageSkia|g 13 s|GetBitmapNamed|GetImageSkiaNamed|g 14 n 15 N 16 s|ToSkBitmap|ToImageSkia|g 17 s|GetBitmapNamed|GetImageSkiaNamed|g 18 b top 19 } 20 /SetToggledImage/ { 21 s|ToSkBitmap|ToImageSkia|g 22 s|GetBitmapNamed|GetImageSkiaNamed|g 23 n 24 N 25 s|ToSkBitmap|ToImageSkia|g 26 s|GetBitmapNamed|GetImageSkiaNamed|g 27 b top 28 } The following files were modified by hand afterwards: 1 ash/launcher/launcher_button.cc 2 ash/system/audio/tray_volume.cc 3 ash/system/drive/tray_drive.cc 4 ash/system/tray/system_tray_delegate.h 5 ash/system/tray/tray_item_more.cc 6 ash/system/tray/tray_item_more.h 7 chrome/browser/chromeos/login/take_photo_view.cc 8 chrome/browser/chromeos/login/take_photo_view.h 9 chrome/browser/chromeos/options/network_config_view.cc 10 chrome/browser/chromeos/options/network_config_view.h 11 chrome/browser/ui/panels/panel_browser_frame_view.cc 12 chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc 13 chrome/browser/ui/views/autocomplete/autocomplete_result_view.h 14 chrome/browser/ui/views/avatar_menu_bubble_view.cc 15 chrome/browser/ui/views/chrome_to_mobile_bubble_view.cc 16 chrome/browser/ui/views/confirm_bubble_view.cc 17 chrome/browser/ui/views/download/download_shelf_view.cc 18 chrome/browser/ui/views/download/download_started_animation_views.cc 19 chrome/browser/ui/views/dropdown_bar_view.cc 20 chrome/browser/ui/views/dropdown_bar_view.h 21 chrome/browser/ui/views/find_bar_view.cc 22 chrome/browser/ui/views/frame/opaque_browser_frame_view.cc 23 chrome/browser/ui/views/hung_renderer_view.cc 24 chrome/browser/ui/views/location_bar/page_action_image_view.cc 25 chrome/browser/ui/views/tabs/tab_strip.cc 26 chrome/browser/ui/views/tabs/tab_strip.h 27 ui/views/controls/button/image_button.h 28 ui/views/controls/button/image_button_unittest.cc 29 ui/views/controls/scrollbar/bitmap_scroll_bar.cc 30 ui/views/controls/scrollbar/bitmap_scroll_bar.h Whitespace changes were made in the following files manually 1 ash/launcher/launcher_view.cc 2 chrome/browser/chromeos/login/simple_web_view_dialog.cc 3 chrome/browser/ui/views/location_bar/chrome_to_mobile_view.cc 4 chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc 5 chrome/browser/ui/views/toolbar_view.cc Bug=124566 Test=Compiles, try bots pass Review URL: https://chromiumcodereview.appspot.com/10382144 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138072 0039d316-1c4b-4281-b951-d872f2087c98
-
- 20 May, 2012 19 commits
-
-
shess@chromium.org authored
BUG=125513 TEST=git status Review URL: https://chromiumcodereview.appspot.com/10386222 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138071 0039d316-1c4b-4281-b951-d872f2087c98
-
nsylvain@chromium.org authored
A while back we removed all FAILS_ and FLAKY_ tests but a few came back. BUG=104300,118944,88552,103062,89961 Review URL: https://chromiumcodereview.appspot.com/10381078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138070 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@google.com authored
linux-release-lowmem/moz: http://build.chromium.org/f/chromium/perf/linux-release-lowmem/moz/report.html?history=250&rev=138066 linux-release-lowmem/intl1: http://build.chromium.org/f/chromium/perf/linux-release-lowmem/intl1/report.html?history=150&rev=138066 linux-release-lowmem/database/*: http://build.chromium.org/f/chromium/perf/linux-release-lowmem/database/report.html?history=150&rev=138066&graph=select-readtransactions-read-results linux-release-lowmem/v8_benchmark: http://build.chromium.org/f/chromium/perf/linux-release-lowmem/v8_benchmark/report.html?history=150&rev=138066 TBR=cmp BUG=128645, 121574 Review URL: https://chromiumcodereview.appspot.com/10413021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138069 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@google.com authored
linux-release-lowmem/moz: http://build.chromium.org/f/chromium/perf/linux-release-lowmem/bloat-http/report.html?history=150&rev=138064 TBR=cmp BUG=128645, 121574 Review URL: https://chromiumcodereview.appspot.com/10411044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138068 0039d316-1c4b-4281-b951-d872f2087c98
-
davemoore@chromium.org authored
BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/10375029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138067 0039d316-1c4b-4281-b951-d872f2087c98
-
perkj@chromium.org authored
This is an alternative solution to http://codereview.chromium.org/10332114/ RenderViewObserver is actually destroyed in the same order as they are created. Ie P2PSocketDispatcher::P2PSocketDispatcher MediaStreamImpl::MediaStreamImpl P2PSocketDispatcher::~P2PSocketDispatcher MediaStreamImpl::~MediaStreamImpl Since MediaStreamImpl holds an observer object to P2PSocketDispatcher and the P2PSocketDispatcher require all observers to have unregistered before it is deleted, it is required that the MediaStreamImpl is either destroyed before P2PSocketDispatcher or that it is notified that the PSocketDispatcher will be destroyed. BUG=127782 TEST= Please see the defect Review URL: https://chromiumcodereview.appspot.com/10387135 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138066 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
Convert GdkPixbufToSkBitmap to GdkPixbufToImageSkia BUG=124566 TEST=Compiles Review URL: https://chromiumcodereview.appspot.com/10377122 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138064 0039d316-1c4b-4281-b951-d872f2087c98
-
jar@chromium.org authored
bug=128734 r=rvargas Review URL: https://chromiumcodereview.appspot.com/10392163 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138063 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
ListModel is intended to be used as composition not inheritance, so it's unlikely these functions will be needed to be overridden, and they aren't until now, so let's not make them virtual for now. R=xiyuan@chromium.org TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10332264 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138062 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138059 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
This is a reland of r138055 with a fix for DCHECK failures. The new API is used to fetch the metadata of files in a particular directory. More specifically, the new API is used to fix the stale thumbnail URL issue. BUG=127697 TEST=added a unit test. Review URL: https://chromiumcodereview.appspot.com/10386226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138057 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
Broke unit_tests on Debug build. The new API is used to fetch the metadata of files in a particular directory. More specifically, the new API is used to fix the stale thumbnail URL issue. BUG=127697 TEST=added a unit test. Review URL: https://chromiumcodereview.appspot.com/10386226 TBR=satorux@chromium.org Review URL: https://chromiumcodereview.appspot.com/10332267 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138056 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
The new API is used to fetch the metadata of files in a particular directory. More specifically, the new API is used to fix the stale thumbnail URL issue. BUG=127697 TEST=added a unit test. Review URL: https://chromiumcodereview.appspot.com/10386226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138055 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
Turned out /-/ part was also necessary for these URLs... BUG=127697 TEST=confirm the API dev that /-/ is needed Review URL: https://chromiumcodereview.appspot.com/10332260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138054 0039d316-1c4b-4281-b951-d872f2087c98
-
cmp@chromium.org authored
TBR=petermayo@chromium.org Review URL: https://chromiumcodereview.appspot.com/10332266 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138053 0039d316-1c4b-4281-b951-d872f2087c98
-
jamiewalch@google.com authored
BUG=128572 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/10407054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138051 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
Revert 138044 - Allowed BinaryValue to take a NULL buffer. BUG=127630 Review URL: https://chromiumcodereview.appspot.com/10389088 TBR=mitchellwrosen@chromium.org Review URL: https://chromiumcodereview.appspot.com/10388207 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138050 0039d316-1c4b-4281-b951-d872f2087c98
-
gman@chromium.org authored
TEST=DRT no longer crashes BUG=none TBR=apatrick@chromium.org Review URL: https://chromiumcodereview.appspot.com/10407055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138049 0039d316-1c4b-4281-b951-d872f2087c98
-
mitchellwrosen@chromium.org authored
Wrote a small sample TTS Engine that prints text to a small window on the bottom of the screen rather than synthesizing speech. BUG=117480 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/9688004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138047 0039d316-1c4b-4281-b951-d872f2087c98
-
- 19 May, 2012 5 commits
-
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138046 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
This pulls in the following Native Client changes: r8627: (jvoung) Add hook to whitelist glibc library files as 'web-accessible-resources', r8628: (robertm) Added function to toolchain builder for shared newlib support. r8629: (dschuff) Stage pnacl extension into chromebinaries directory, and add the nacl_irt_test environment to the scons mode. r8630: (khim) Bump REVISIONS r8631: (dschuff) Run Pnacl browser tests on nacl-chrome integration bot r8632: (jvoung) Add a test to check that our nexe ARM float abi is hard, not soft. r8633: (jvoung) Advertise debug options in pnacl-clang script's help message. r8634: (bradnelson) Adding support for 'sources' 'sources!' and 'sources/' r8635: (kschimpf) Clean up model.h in validator_arm to follow C++ style guide. r8636: (mcgrathr) Further harmonize Gyp configuration for ARM with Chromium r8637: (kschimpf) Allow bfc as another way to mask loads/stores. r8638: (mseaborn) Cleanup: Remove unused arguments from nc_thread_starter() r8639: (bbudge) Update Chrome revision in NaCl DEPS. r8641: (kschimpf) Define baseline decoders for store/load (register) instructions. r8642: (robertm) Corrected some paths inside the shared newlib experiment r8643: (bungeman) Add dep of reverse_service to simple_serivce. r8644: (mseaborn) Cleanup: Remove libpthread's unused __thread_exit_hook r8645: (robertm) Roll PNaCl toolchain deps to r8628 r8647: (dschuff) Disable pnacl browser tests on windows integration bot r8648: (bradnelson) Switching scan_sources to be used as a module for speed + line length. r8649: (mseaborn) Fix pthread_kill() to return an error number instead of setting errno r8650: (mseaborn) libpthread: Make pthread_t a pointer instead of a small integer ID r8651: (mcgrathr) Fix mcgrathr account name in OWNERS file r8652: (mcgrathr) Fix objdump command name in validation-report.py r8653: (jvoung) Remove redundant and local/custom LLC flag -arm_static_tls from driver, r8654: (mseaborn) ARM: Remove another malloc()-avoidance hack now that the bottom 1GB is reserved r8655: (bsy) Test to verify that NaClMutex objects are actually binary mutexes. BUG=none TEST=nacl_integration Review URL: https://chromiumcodereview.appspot.com/10411041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138045 0039d316-1c4b-4281-b951-d872f2087c98
-
mitchellwrosen@chromium.org authored
BUG=127630 Review URL: https://chromiumcodereview.appspot.com/10389088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138044 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138043 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
Picks up another attempt at fixing the mac shared build. BUG=none TEST=none TBR=rsleevi Review URL: https://chromiumcodereview.appspot.com/10332265 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138042 0039d316-1c4b-4281-b951-d872f2087c98
-