- 18 Feb, 2014 40 commits
-
-
binji@chromium.org authored
The fullscreen view moves the controls to a panel in the upper-left, and removes most of the text. Also, fix some flexbox bugs that only appear in Chrome 34 (not Chrome 32). It seems that the flex-shrink attribute needs to be 1 now, or the element will use more than its desired size, even if flex-grow is 0. Not sure if this is a bug or not... BUG=341666 R=sbc@chromium.org Review URL: https://codereview.chromium.org/140093007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251843 0039d316-1c4b-4281-b951-d872f2087c98
-
bulach@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/170633002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251842 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251841 0039d316-1c4b-4281-b951-d872f2087c98
-
justincohen@chromium.org authored
This roll fixes the -Wdeprecated-declarations and -Wenum-conversion warnings on iOS builds. r626 Update the line break mode to use the updated constant, NSLineBreakByClipping, instead of UILineBreakModeClip r625 Fix up some assertions so that they don't run into issues with format strings not being constants. r624 Fix up build breakage on older compilers in GTMScriptRunner.m r623 Edited wiki page iPhoneUnitTesting through web user interface. r622 Edited wiki page iPhoneUnitTesting through web user interface. r621 Fix for GTMScriptRunner:run:standardError: deadlocks with full error pipe r620 Adding support for unit tests using ARC. r619 Fix up some compiler warnings. r618 Turn on three warnings that were on in Pulse but not on for local development. r617 Deprecate GTMObjectSingleton for 10.9/iOS 7 to force removal of the dependency from projects using it. BUG=None TEST=None Review URL: https://codereview.chromium.org/150363002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251840 0039d316-1c4b-4281-b951-d872f2087c98
-
jochen@chromium.org authored
The value WebReferrerPolicyDefault is encoded as 1. BUG=339790 R=zea@chromium.org Review URL: https://codereview.chromium.org/168883002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251839 0039d316-1c4b-4281-b951-d872f2087c98
-
lambroslambrou@chromium.org authored
This makes Chromoting.java completely single-threaded. Auth tokens are still handled in Chromoting.java, but all the host-list fetching takes place in HostListLoader.java. The error-handling is improved to match more closely with what the web-app does in host_list.js. Otherwise, I've tried to keep the error-handling the same as before. Previously, errors from the AccountService and host-list fetching were all handled in the same place. For example, all IOExceptions were assumed to be caused by the OAuth token being invalid. Now I've added an enumeration of possible errors from host-list fetching, and we only refresh the auth token if the error was explicitly an authentication failure. Future CLs will improve the error-handling, reusing many of the same localized strings as the web-app. BUG=304719 NOTRY=true TBR=sergeyu Review URL: https://codereview.chromium.org/157013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251838 0039d316-1c4b-4281-b951-d872f2087c98
-
xhwang@chromium.org authored
This is a clean up CL following r251277. During media pipeline shutdown, WebMediaPlayerImpl::Destroy() is blocking the main render thread to wait for the media filters to be stopped correctly. As a result, Decrypting{Audio|Video}Decoder::Stop() cannot wait for the Decryptor to finish all pending operations because some Decryptors rely on the main render thread to work. Instead, Decrypting{Audio|Video}Decoder::Stop() clears its internal data, fires all pending callbacks, sets it's state to kStopped and fires the stop callback immediately. However, after this process, there may still be callbacks outstanding on the Decrypting{Audio|Video}Decoder object. Previously we check the condition "state_ == kStopped" in all callback functions to turn those callbacks into a no-op. In this CL, we invalidate all weak pointers during the Stop() process so that no pending callbacks will ever be fired back, which is cleaner and safer. BUG=343748 TEST=Existing tests still pass. Review URL: https://codereview.chromium.org/167523004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251837 0039d316-1c4b-4281-b951-d872f2087c98
-
bartfab@chromium.org authored
This CL fixes the size of the big, red logout button that regressed when the LabelButton class was switched from Font to FontList. BUG=343956 TEST=Manual Review URL: https://codereview.chromium.org/162753007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251836 0039d316-1c4b-4281-b951-d872f2087c98
-
dschuff@chromium.org authored
Previously there was no indication to the translation cache of what architecture the translated nexes were compiled for. This was not a problem in a world where the architecture of chrome (or Windows) did not change, but this will shortly happen on OSX, and we may support multiple sandboxes in the future. This adds 2 fields to the translation cache info, so that we can differentiate the architectures and retrieve nexes that will actually work. The field for extra compile flags is not being used yet, but may be in the future if we start using machine-specific optimizations. R=jvoung@chromium.org,teravest@chromium.org BUG=316912 Review URL: https://codereview.chromium.org/163433015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251835 0039d316-1c4b-4281-b951-d872f2087c98
-
dgozman@chromium.org authored
BUG=343166 Review URL: https://codereview.chromium.org/160563002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251834 0039d316-1c4b-4281-b951-d872f2087c98
-
fmeawad@chromium.org authored
Review URL: https://codereview.chromium.org/163943004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251833 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/150573007pkotwicz@chromium.org authored
The debugging code unfortunately did not produce any results. BUG=None TEST=None Review URL: https://codereview.chromium.org/169283010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251832 0039d316-1c4b-4281-b951-d872f2087c98
-
dominikg@chromium.org authored
We're currently in the process of enforcing that SkPaint effects can only be allocated on the heap. That involves making constructors non-public and providing factory methods instead. Until all the changes on the Skia side have been rolled into Chrome and the callsites have been changed, we use a define to guard the visibility of the constructors. BUG=skia:2187 Review URL: https://codereview.chromium.org/168173003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251831 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@chromium.org authored
BUG=326023 Review URL: https://codereview.chromium.org/163673003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251830 0039d316-1c4b-4281-b951-d872f2087c98
-
justincohen@chromium.org authored
GTM isn't necessary for iOS's breakpad client. BUG=339495 TEST=None Review URL: https://codereview.chromium.org/139203006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251829 0039d316-1c4b-4281-b951-d872f2087c98
-
vandebo@chromium.org authored
Existing galleries that have scan results should get updated if the value stored in preferences is different than the value found - even if the value found is zero. BUG=NONE Review URL: https://codereview.chromium.org/167863002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251828 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
Previously this was being set for all .c[c] files on Mac. BUG=336480 R=thakis@chromium.org Review URL: https://codereview.chromium.org/164193009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251827 0039d316-1c4b-4281-b951-d872f2087c98
-
groby@chromium.org authored
Hide/Show the URL based on various triggers if origin chip is enabled. Specifically: * Hide URL if location bar loses focus. * Hide URL if location bar is focused via mouse click. * Hide URL on navigation. * Display URL after click on origin chip. (NOT IMPLEMENTED YET) * Display URL after Cmd-L. Also, show a hint text if no text is currently entered. BUG=338563 Review URL: https://codereview.chromium.org/165853002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251826 0039d316-1c4b-4281-b951-d872f2087c98
-
caitkp@chromium.org authored
BUG=334379 Review URL: https://codereview.chromium.org/154463002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251823 0039d316-1c4b-4281-b951-d872f2087c98
-
creis@chromium.org authored
BUG=187570 TEST=RenderFrameHostManagerTest.* passes on Android Review URL: https://codereview.chromium.org/163753003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251822 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This allows us to have the default value vary according to other parameters. This is what we need in many cases, so having this restriction just made things more complicated. The getenv function will allow us to replace some Python scripts with a fast native function call. The use of rebase path is pretty annoying. 99% of all callers want the "from" directory to be the current one. I reordered the parameters to move the from directory later so we can have a default value for it. This will require a patch to change all current callers of rebase_path when new deps are pulled. BUG=342937 R=viettrungluu@chromium.org Review URL: https://codereview.chromium.org/161783002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251821 0039d316-1c4b-4281-b951-d872f2087c98
-
mangini@chromium.org authored
BUG=344038 NOTRY=true Review URL: https://codereview.chromium.org/167893011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251820 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251819 0039d316-1c4b-4281-b951-d872f2087c98
-
vabr@chromium.org authored
This just moves the files and adds needed dependencies. BUG=344456 TBR=atwilson@chromium.org,rvargas@chromium.org Review URL: https://codereview.chromium.org/170313003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251818 0039d316-1c4b-4281-b951-d872f2087c98
-
sdefresne@chromium.org authored
Changes: r1854: Cache Xcode version at the module level r1853: ninja: Let TOC code use $lib instead of ${lib}. BUG=https://code.google.com/p/gyp/issues/detail?id=408 R=thakis@chromium.org Review URL: https://codereview.chromium.org/170833002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251817 0039d316-1c4b-4281-b951-d872f2087c98
-
ararunprasad@gmail.com authored
BUG=344502 Review URL: https://codereview.chromium.org/167003005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251815 0039d316-1c4b-4281-b951-d872f2087c98
-
ajuma@chromium.org authored
This changes the test to make sure it doesn't expect animations to be frozen after EndTest(), since after this point we allow draws to succeed. BUG=344078 Review URL: https://codereview.chromium.org/170593002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251813 0039d316-1c4b-4281-b951-d872f2087c98
-
rob@robwu.nl authored
When the function reaches this point in the code, then url.SchemeIs(kExtensionScheme) was false. So the condition will remain false in GetExtensionOrAppByURL, which makes this method equivalent to GetHostedAppByURL. Save some cycles by calling GetHostedAppByURL directly. Contributed by Rob Wu <rob@robwu.nl> BUG= Review URL: https://codereview.chromium.org/167493003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251811 0039d316-1c4b-4281-b951-d872f2087c98
-
dmichael@chromium.org authored
BUG=343576 Review URL: https://codereview.chromium.org/167393002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251810 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251809 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/170233005/chrishtr@chromium.org authored
Reason for revert: Causing win 7 dbg failures: http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%285%29 Original issue's description: > Blink roll 167304:167337 > > http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=167305:167337&mode=html > TBR= > BUG= > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=251783 TBR=eseidel@chromium.org NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/171183002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251808 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
BUG=344582 TBR=atwilson@chromium.org, dewittj@chromium.org Review URL: https://codereview.chromium.org/170763004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251807 0039d316-1c4b-4281-b951-d872f2087c98
-
aelias@chromium.org authored
When a navigation entry changes (which contains data that should be serialized to disk such as form text field state and scroll offset), TabBase.java needs to hear about it so that it so that it can be written to disk later. NOTRY=true BUG=323094 Review URL: https://codereview.chromium.org/164183013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251806 0039d316-1c4b-4281-b951-d872f2087c98
-
gab@chromium.org authored
Have chromedriver use chrome/common/chrome_constants.cc directly rather than having to hardcode a copy or depend on the full target itself. akin to https://codereview.chromium.org/163763004/ BUG=343692 Review URL: https://codereview.chromium.org/165053002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251804 0039d316-1c4b-4281-b951-d872f2087c98
-
bcwhite@chromium.org authored
There have been issues with the way forced-incognito causes some things to behave and various menu items to appear. We now follow the ChromeOS model (merging several instances of conditional ChromeOS code) of simply using the incognito profile when opening the window. This change should fix some of the issues being seen in the field, simplify Guest profiles going forward, bring Desktop and ChromeOS experience closer together, and generally reduce Technical Debt from special-case scenarios. BUG=103846 Review URL: https://codereview.chromium.org/164333007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251803 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
I'm going to nuke DockInfo soonish. This is a step in that direction. BUG=none TEST=none R=ben@chromium.org Review URL: https://codereview.chromium.org/168733002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251799 0039d316-1c4b-4281-b951-d872f2087c98
-
bcwhite@chromium.org authored
Guests shouldn't be setting Chrome as the default browser. Some settings make sense but this one does not. BUG=285347 Review URL: https://codereview.chromium.org/167783002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251798 0039d316-1c4b-4281-b951-d872f2087c98
-
bartfab@chromium.org authored
TLS Lite generates RSA signatures by converting a large integer that holds the signature to a byte string. It does not apply any padding so that if the signature starts with sufficiently many zero bits, the byte string will be shorter than expected (it should have the same length as the key's modulus). This bug was fixed in trunk TLS Lite but is still present in our fork. The fix in trunk TLS Lite was spread over two commits: * Add a |howManyBytes| argument to the numberToBytes() method: https://github.com/trevp/tlslite/commit/ 4278f558c2c519684ab35e9fc84887c15a11ea16 * Specify |howManyBytes| when generating an RSA signature: https://github.com/trevp/tlslite/commit/ 0b8b2b4122109f22900ec929432308dd685f1d45 BUG=331761 TEST=Manual Review URL: https://codereview.chromium.org/168903005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251797 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
BUG=163931 TBR=erg Review URL: https://codereview.chromium.org/157713003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251796 0039d316-1c4b-4281-b951-d872f2087c98
-
jiayl@chromium.org authored
This will enable displaying the BWE debug stats on chrome://webrtc-internals. The JS is updated to special case the propagation delta value because the value of the stat is a list and its timestamp is in the value of stat receivedPacketGroupArrivalTime. BUG=338380 Review URL: https://codereview.chromium.org/139473006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251795 0039d316-1c4b-4281-b951-d872f2087c98
-