- 07 Aug, 2012 40 commits
-
-
motek@chromium.org authored
This file needs to be added separately from the original CL since CQ does not handle new binaries. R=jhawkins@chromium.org BUG=140357 Review URL: https://chromiumcodereview.appspot.com/10855025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150347 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
bookmark_index_unittest.cc: Summary: Function parameter 'expected_titles' should be passed by reference. Message: Parameter 'expected_titles' is passed as a value. It could be passed as a (const) reference which is usually faster and recommended in C++. bookmark_model_unittest.cc: Summary: Member variable 'BookmarkModelTestWithProfile::bb_model_' is not initialized in the constructor. Message: Member variable 'BookmarkModelTestWithProfile::bb_model_' is not initialized in the constructor. R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10828168 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150346 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@chromium.org authored
BUG=116317 TEST=builds,manual With this change, the IPC-based PPAPI proxy builds and runs the tumbler example. Review URL: https://chromiumcodereview.appspot.com/10796038 TBR=bbudge@chromium.org Review URL: https://chromiumcodereview.appspot.com/10830197 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150345 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
The API returns 503 errors if we try to download photos too quickly. This change adds cheesy rate-limiting so we don't request more than 10 photos per second (which appears to be the undocumented limit) and also makes us retry when we get a 503. I'm also making GDataContactsService report success even when we got 404 errors for some photos, as I see this happen with my personal account. :-/ BUG=128805 TEST=none Review URL: https://chromiumcodereview.appspot.com/10823182 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150344 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@chromium.org authored
BUG=116317 TEST=builds,manual With this change, the IPC-based PPAPI proxy builds and runs the tumbler example. Review URL: https://chromiumcodereview.appspot.com/10796038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150343 0039d316-1c4b-4281-b951-d872f2087c98
-
felipeg@chromium.org authored
BUG=138955 Review URL: https://chromiumcodereview.appspot.com/10832080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150342 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
BUG=none Review URL: https://chromiumcodereview.appspot.com/10836127 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150341 0039d316-1c4b-4281-b951-d872f2087c98
-
grt@chromium.org authored
BUG=none TEST=none TBR=gab@chromium.org Review URL: https://chromiumcodereview.appspot.com/10827174 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150340 0039d316-1c4b-4281-b951-d872f2087c98
-
serya@chromium.org authored
BUG=134600 TEST=Manual test. Review URL: https://chromiumcodereview.appspot.com/10700079 Review URL: https://chromiumcodereview.appspot.com/10832177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150339 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150338 0039d316-1c4b-4281-b951-d872f2087c98
-
reed@google.com authored
Review URL: https://chromiumcodereview.appspot.com/10824184 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150337 0039d316-1c4b-4281-b951-d872f2087c98
-
satish@chromium.org authored
This CL removes the unnecessary RemoteDebuggingcontroller java class and associated c++ code. Also devtools_server.* is moved from content/ to chrome/ so that the code to access profiles, version etc. can be handled here to make DevToolsServer a self contained class in chrome/ layer handling devtools for android. The code making use of this class is not yet ready to be upstreamed due to dependencies and will land in future. Also added shell_devtools_delegate_android.cc to enable devtools for content_shell on android. This class and chrome/browser/android/devtools_server.cc need a common place to put the IsUserAllowedToConnect method that ensures only adb is allowed to access devtools on android (via the abstract unix socket, for security purposes) hence that method is placed in DevToolsHttpHandler in content/ BUG=136682,136318 TEST=manual. Run android content shell, execute "adb forward tcp:9222 localabstract:content_shell_devtools_remote" and open "localhost:9222" on the host machine to use devtools. Review URL: https://chromiumcodereview.appspot.com/10832112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150336 0039d316-1c4b-4281-b951-d872f2087c98
-
tomhudson@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10823186 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150335 0039d316-1c4b-4281-b951-d872f2087c98
-
mnissler@chromium.org authored
Turns out that reverting the change breaks Win clobbers since the remoting stuff meanwhile depends on the gyp roll. BUG=chromium:140324 TBR=alexeypa@chromium.org Review URL: https://chromiumcodereview.appspot.com/10825219 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150334 0039d316-1c4b-4281-b951-d872f2087c98
-
mnissler@chromium.org authored
The current situation of boolean policy switches either enabling or disabling something is pretty arbitrary (although tending to be the inverse of the browser default). It's much easier to reason about XYZEnabled-style settings, so we prefer those going forward. BUG=chromium:85687 TEST=None Review URL: https://chromiumcodereview.appspot.com/10829197 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150333 0039d316-1c4b-4281-b951-d872f2087c98
-
markusheintz@chromium.org authored
Disable the Website Settings UI on Windows by default. It can be enabled by using the flag --enable-website-settings BUG=141062 Review URL: https://chromiumcodereview.appspot.com/10834134 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150332 0039d316-1c4b-4281-b951-d872f2087c98
-
mnissler@chromium.org authored
Causes compile failures on the official builders. BUG=None TBR=glider@chromium.org Review URL: https://chromiumcodereview.appspot.com/10836131 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150331 0039d316-1c4b-4281-b951-d872f2087c98
-
oleg@chromium.org authored
BUG=140877 Review URL: https://chromiumcodereview.appspot.com/10827196 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150330 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150329 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
These paths either no longer exist on any platform, or don't cause license errors. BUG=138921 Review URL: https://chromiumcodereview.appspot.com/10843069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150328 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
TBR=dimich@chromium.org Review URL: https://chromiumcodereview.appspot.com/10837137 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150327 0039d316-1c4b-4281-b951-d872f2087c98
-
glider@chromium.org authored
When the code is built with ASan, Chrome should register a callback which notifies the browser about a memory error. The error report message is passed to the crash handler and is then sent to the crash server along with the minidump. Review URL: https://chromiumcodereview.appspot.com/10703116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150326 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
This was broken by https://chromiumcodereview.appspot.com/10376003/diff/37016/chrome/browser/resources/shared/js/cr/ui/list.js, and broke the prefs_ui.py pyauto tests. TBR=nirnimesh@chromium.org,kkania@chromium.org Review URL: https://chromiumcodereview.appspot.com/10836130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150325 0039d316-1c4b-4281-b951-d872f2087c98
-
chenyu@chromium.org authored
Utility methods in this package provides IOS device-specific information. BUG=NONE TEST=NONE Review URL: https://chromiumcodereview.appspot.com/10818023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150324 0039d316-1c4b-4281-b951-d872f2087c98
-
peter@chromium.org authored
BUG= TEST=People get e-mail for related Android changes. Review URL: https://chromiumcodereview.appspot.com/10826166 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150323 0039d316-1c4b-4281-b951-d872f2087c98
-
kochi@chromium.org authored
This CL adds GetChangelist operation and its corresponding interface for DocumentsService. No code uses this interface yet. BUG=chromium:127728 TEST=none Review URL: https://chromiumcodereview.appspot.com/10836125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150322 0039d316-1c4b-4281-b951-d872f2087c98
-
mnissler@chromium.org authored
Breakage on Win Builder 2008: 7>------ Build started: Project: chrome_tab_idl, Configuration: Debug Win32 ------ 7>Creating Type Library... 7>midl : command line warning MIDL1009 : unknown argument ignored ".\chrome_tab.idl" 7>GrGLConfig_chrome.h"" 7>Processing GrGLConfig_chrome.h\"" 7>c1 : fatalerror C1083: Cannot open source file: 'GrGLConfig_chrome.h""': Invalid argument 7>midl : command line error MIDL1003 : error returned by the C preprocessor (2) BUG=chromium:140324 TBR=alexeypa@chromium.org Review URL: https://chromiumcodereview.appspot.com/10837138 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150321 0039d316-1c4b-4281-b951-d872f2087c98
-
jochen@chromium.org authored
I should come up with a better name than LayoutTestController{Host,} for content_shell The extension docs are updated here: https://chromiumcodereview.appspot.com/10825200/ The binaries in chrome/test/data/extensions/uitest don't actually invoke LTC BUG=none TEST=still works after WK roll Review URL: https://chromiumcodereview.appspot.com/10827182 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150320 0039d316-1c4b-4281-b951-d872f2087c98
-
benm@chromium.org authored
Make sure we get the correct path to data packs on Android for the UI unit tests. Review URL: https://chromiumcodereview.appspot.com/10826148 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150319 0039d316-1c4b-4281-b951-d872f2087c98
-
vabr@chromium.org authored
and putting the classes into extensions namespace. TBR=ben@chromium.org BUG=101244 TEST=N/A, no code change, moving stuff around only Review URL: https://chromiumcodereview.appspot.com/10830180 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150318 0039d316-1c4b-4281-b951-d872f2087c98
-
mnissler@chromium.org authored
It broke Win Builder 2008: 7>------ Build started: Project: chrome_tab_idl, Configuration: Debug Win32 ------ 7>Creating Type Library... 7>midl : command line warning MIDL1009 : unknown argument ignored ".\chrome_tab.idl" 7>GrGLConfig_chrome.h"" 7>Processing GrGLConfig_chrome.h\"" 7>c1 : fatalerror C1083: Cannot open source file: 'GrGLConfig_chrome.h""': Invalid argument 7>midl : command line error MIDL1003 : error returned by the C preprocessor (2) BUG=chromium:140324 TBR=alexeypa@chromium.org Review URL: https://chromiumcodereview.appspot.com/10829216 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150317 0039d316-1c4b-4281-b951-d872f2087c98
-
marja@chromium.org authored
Write sessionStorage on disk, and restore it after relaunching, when recovering from a crash, and when the startup option "continue where I left off" is selected. BUG=104292 TEST=Manual; SessionStorageDatabaseTest.ReadOriginsInNamespace Review URL: https://chromiumcodereview.appspot.com/9963107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150314 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
These tests are disabled by having an empty list of platforms. Commenting them out causes a presubmit script to fail. TBR=nirnimesh@chromium.org BUG=132345 Review URL: https://chromiumcodereview.appspot.com/10827195 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150313 0039d316-1c4b-4281-b951-d872f2087c98
-
phoglund@chromium.org authored
Added a new test which aims to be really, really mean to WebRTC. Hopefully this will cover some crashes we have fixed recently. BUG= NOTRY=True Review URL: https://chromiumcodereview.appspot.com/10830159 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150312 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150311 0039d316-1c4b-4281-b951-d872f2087c98
-
mkwst@chromium.org authored
`layoutTestController` was recently renamed to `testRunner`. See http://lists.webkit.org/pipermail/webkit-dev/2012-August/021746.html for context. BUG=140791 Review URL: https://chromiumcodereview.appspot.com/10825200 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150308 0039d316-1c4b-4281-b951-d872f2087c98
-
henrika@chromium.org authored
What's new? ======== Output stream is always opened up using the native number of channels and channel configuration. The user can set a lower number of channels during construction and for this case up-mixing (typically 2 -> 7.1) takes place since the audio source does not deliver sufficient number of channels for this case. It is still possible to avoid up-mixing simply by creating up the stream using the native channel count (which can be queried before construction). TODO ==== - Clean up ChannelUpMix(). - Add support for 8-bit and 24-bit audio? - Add support for 2 -> 1 down-mixing? - More mixing combinations? - Add accessors for ChannelCount/Layout. - Improve usage of channel_factor to detect mixing mode. BUG=138762 TEST=media_unittests --gtest_filter=WASAPIAudioOutput* Review URL: https://chromiumcodereview.appspot.com/10823100 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150307 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150306 0039d316-1c4b-4281-b951-d872f2087c98
-
dpolukhin@chromium.org authored
BUG=138985 TEST=existing tests Review URL: https://chromiumcodereview.appspot.com/10837124 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150305 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
TBR=dimich@chromium.org Review URL: https://chromiumcodereview.appspot.com/10830196 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150304 0039d316-1c4b-4281-b951-d872f2087c98
-