- 26 Jul, 2012 40 commits
-
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148633 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
This is to pick up recent fixes to license metadata. third_party/aosp: r122156 to r148330 - r122930 - Add svn:ignore to aosp - r148330 - Fix licensing metadata for third_party/aosp third_party/webgl_conformance: r138171 to r148561 - r148561 - Fix license metadata for ffmpeg and WebGL conformance tests BUG=138921 Review URL: https://chromiumcodereview.appspot.com/10827044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148632 0039d316-1c4b-4281-b951-d872f2087c98
-
jar@chromium.org authored
r=scottmg BUG=139084 Review URL: https://chromiumcodereview.appspot.com/10833030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148631 0039d316-1c4b-4281-b951-d872f2087c98
-
ericu@google.com authored
BUG=137764 TEST=self Review URL: https://chromiumcodereview.appspot.com/10790041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148630 0039d316-1c4b-4281-b951-d872f2087c98
-
jar@chromium.org authored
Some long lived browsers (and more likely, run-away and hyperactive tasks) can run more times than can be tallied in a mere int (2^31 times). We use the count as a modulus to take a uniform sample of other profiled activities. If the task runs enough times, this value turns negative, and eventually becomes zero, which would cause an arithmetic exception (divide by zero when doing modulo operation). We now clamp the value at 2^31 - 1, which will make clear what has happened when users visit about:profiler (a task has run a LOT), and we then use this clamped value (instead of the real count) to be very infrequent about taking a replacement sample. This sampling should be "good enough for government work," and should not impact enough folks to have any effect on our profiling stats. r=isherman BUG=138961 Review URL: https://chromiumcodereview.appspot.com/10826018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148628 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
The default LibjingleTransportFactory is used for tests only. We didn't disable TCP ports even though we do disable them in host and client. Review URL: https://chromiumcodereview.appspot.com/10824049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148627 0039d316-1c4b-4281-b951-d872f2087c98
-
rlp@chromium.org authored
Fixing some more instances where I put in HistoryServiceFactory::GetForProfile which will force creation of the history. Replacing those instantces where we should not force creation and should instead just check if the history has already been created. BUG=97804 TEST=unittests Review URL: https://chromiumcodereview.appspot.com/10605003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148626 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Disable GPU process prelaunching in content_browsertests on Linux. This is causing lots of crashes inside base::LaunchProcess. BUG=139209,90448 TBR=zmo Review URL: https://chromiumcodereview.appspot.com/10827053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148625 0039d316-1c4b-4281-b951-d872f2087c98
-
rsimha@chromium.org authored
Windows 8 has both a classic "Desktop" mode and a new "Metro" mode, that must use different browser processes because Chrome profile data stores can only be accessed from one profile at a time, and it is not technically feasible to allow multi process access today. The short term solution to making the experience less jarring on Windows 8 is to cache the sync credentials in a separate file when the user signs in on either Metro or Desktop, so that they can be used to auto-start sync on the alternate profile (Desktop or Metro) when it is opened. This patch contains the following changes: - A new class CredentialCacheService, that contains code capable of encrypting and persisting the google username, the lsid and sid, the encryption bootstrap token, and a list of enabled / disabled sync datatypes to a json encoded "Sync Credentials" file in the profile directory. - Methods that listen to the PrefService and TokenService for changes to the above credentials and persist them when the user successfully signs in manually. - Code in ProfileSyncService that detects that we are running on Windows 8, and if sync has never been set up, tries to load cached credentials from the alternate Metro / Desktop profile, and if they were found, bootstrap sync using the credentials. - Mechanisms to detect that we are using the "Default" profile on Metro or Desktop. As of today, Metro Chrome on Windows 8 does not support multiple profiles, and there is no good way to pair up a non-default profile directory ("Profile 1", "Profile 2", etc.) on Desktop to its corresponding directory on Metro and vice versa. - Unit tests for functionality in credential_cache_service_win.{h|cc}. BUG=139199,139200 TEST=Sign in to sync on Desktop, launch Metro, and watch sync automatically start up Review URL: https://chromiumcodereview.appspot.com/10656033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148624 0039d316-1c4b-4281-b951-d872f2087c98
-
posciak@chromium.org authored
This fixes initialization of stream parameters for Baseline profile and thus the "green-video" bug (135548). Chroma parameters were not being set up properly for that profile. BUG=135548 TEST=manual run of affected streams Review URL: https://chromiumcodereview.appspot.com/10821043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148623 0039d316-1c4b-4281-b951-d872f2087c98
-
bartfab@chromium.org authored
This CL ensures that when the PrintingEnabled policy or the corresponding printing.enabled pref is set, the JS window.print() call is completely ignored. Previously, it was bringing up a print preview dialog. BUG=107709 TEST=Policy and pref both successfully block JS printing Review URL: https://chromiumcodereview.appspot.com/10689190 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148622 0039d316-1c4b-4281-b951-d872f2087c98
-
maruel@chromium.org authored
Revert r144460 "Remove the linux-only CR_SOURCE_ROOT environment variable override of base::DIR_SOURCE_ROOT." CR_SOURCE_ROOT is used in practice by linux user(s), plural still to be determined, mostly for ChromeOS related development. R=willchan@chromium.org BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10808048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148621 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148620 0039d316-1c4b-4281-b951-d872f2087c98
-
atwilson@chromium.org authored
TBR=pkasting@chromium.org BUG=none PATCH=none Originally tried r123710 since Mac browser_tests were known green then, but Windows + Android need the build fix at x712. Review URL: https://chromiumcodereview.appspot.com/10820029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148619 0039d316-1c4b-4281-b951-d872f2087c98
-
jamiewalch@chromium.org authored
BUG=135089 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/10824035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148618 0039d316-1c4b-4281-b951-d872f2087c98
-
markusheintz@google.com authored
BUG=138059 TEST=none Review URL: https://chromiumcodereview.appspot.com/10797046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148617 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
It's just one. BUG=136844 TEST=none Review URL: https://chromiumcodereview.appspot.com/10833031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148616 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
BUG=137676 TEST=none Review URL: https://chromiumcodereview.appspot.com/10830032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148615 0039d316-1c4b-4281-b951-d872f2087c98
-
palmer@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148614 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Revert 148582 - Try renabling the the disabled worker tests, now that they run in content_browsertests. BUG=36555,69881,48148 Review URL: https://chromiumcodereview.appspot.com/10824022 TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/10835011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148613 0039d316-1c4b-4281-b951-d872f2087c98
-
bsalomon@google.com authored
Review URL: https://chromiumcodereview.appspot.com/10821045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148612 0039d316-1c4b-4281-b951-d872f2087c98
-
kaustubh.ra@gmail.com authored
Review URL: https://chromiumcodereview.appspot.com/10800093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148610 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
BUG=138862 TBR=arv@chromium.org Review URL: https://chromiumcodereview.appspot.com/10832027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148606 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
BUG=125599 TEST=No AsyncDNS.DNSChangerDetected in chrome://histograms Review URL: https://chromiumcodereview.appspot.com/10832018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148604 0039d316-1c4b-4281-b951-d872f2087c98
-
mazda@chromium.org authored
Fix a typo in the previous CL (http://src.chromium.org/viewvc/chrome?view=rev&revision=148520). TBR=jam@chromium.org BUG=118571 TEST=None Review URL: https://chromiumcodereview.appspot.com/10821044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148602 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148601 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10833037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148600 0039d316-1c4b-4281-b951-d872f2087c98
-
bsalomon@google.com authored
Review URL: https://chromiumcodereview.appspot.com/10826019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148599 0039d316-1c4b-4281-b951-d872f2087c98
-
orenb@chromium.org authored
Addresses discussion in code review iossue 10828025. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10821039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148598 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
MD5 computation is a series of many tiny function calls, which causes tsan to slow down. For example, MD5 computation accounted for ~38% of samples when running media_unittests PipelineIntegrationTest.BasicPlaybackHashed. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10806096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148596 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
R=krisr@chromium.org BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10823044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148595 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@google.com authored
linux-release-lowmem/bloat-http/times: http://build.chromium.org/f/chromium/perf/linux-release-lowmem/bloat-http/report.html?history=150&rev=148559 TBR=cmp Review URL: https://chromiumcodereview.appspot.com/10827048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148594 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
CID_COUNT=7 CID=13432,14429,16922,101542,101734,102304,102305 BUG=none TEST=none R=tbreisacher TBR=jam@chromium.org,tommi@chromium.org,ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10830021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148592 0039d316-1c4b-4281-b951-d872f2087c98
-
tbreisacher@chromium.org authored
CID=104194 BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10820016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148590 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
It appears that chrome://version's title takes a while to show up now. Update test to wait for it. R=dennisjeffrey@chromium.org BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/10835007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148589 0039d316-1c4b-4281-b951-d872f2087c98
-
ivankr@chromium.org authored
BUG=None TEST=chromeos_oobe.py Review URL: https://chromiumcodereview.appspot.com/10821031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148587 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@chromium.org authored
Disabling UDPSocketTest.Broadcast that is failing on Android FYI bot BUG=139144 TEST= Review URL: https://chromiumcodereview.appspot.com/10834036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148586 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Fix crash in WorkerTest.MultipleTabsQueuedSharedWorker. I could get this consistently when running debug content_browsertests builds in VS. BUG=69881 Review URL: https://chromiumcodereview.appspot.com/10828033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148584 0039d316-1c4b-4281-b951-d872f2087c98
-
markusheintz@google.com authored
BUG=113688 TEST=none TBR=sail@chromium.org Review URL: https://chromiumcodereview.appspot.com/10823043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148583 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
BUG=36555,69881,48148 Review URL: https://chromiumcodereview.appspot.com/10824022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148582 0039d316-1c4b-4281-b951-d872f2087c98
-