- 02 Sep, 2014 40 commits
-
-
asvitkine authored
- Treats ')' as a param delimeter for the macros. This makes SCOPED_UMA_HISTOGRAM_TIMER("Foo") not trigger the non-literal name warning. - Removes check for FieldTrial::MakeName() which no longer exists. BUG=none NOTRY=true Review URL: https://codereview.chromium.org/504943002 Cr-Commit-Position: refs/heads/master@{#292936}
-
mlerman authored
BUG=408030 R=estade@chromium.org TEST=In ChromeOS: Open a guest. Go to settings. Verify search box there. On desktop: Open a guest. Go to settings. Verify search box not there. Review URL: https://codereview.chromium.org/517633002 Cr-Commit-Position: refs/heads/master@{#292935}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/d61a485818c6e67e43934ccd3c6cd453994bebf9..3337740376fe24b813a4ce1dd9f3817edcd9bfa3 TBR=hclam@chromium.org,tkent@chromium.org Review URL: https://codereview.chromium.org/518803008 Cr-Commit-Position: refs/heads/master@{#292934}
-
jonross authored
EventGenerator creates touch events in two different manners. Those that use TestTouchEvent set touch radii without exposing this to unit test classes. Chrome's gesture recognizer uses these radii when determining touch rects. This can lead to different views being targetting within unittests. Remove the setting of these radii. Tests that wish to use larger can still create TouchEvents and call EventGenerator::Dispatch. Review URL: https://codereview.chromium.org/522453002 Cr-Commit-Position: refs/heads/master@{#292933}
-
mkwst authored
password_manager::CredentialManagerClient was a RenderProcessObserver, and sent messages via RenderThread. This couldn't possibly have ever worked; the messages it sent were simply dropped on the floor. After this patch, it's a RenderViewObserver and its messages successfully land in the ChromePasswordManagerClient, just as they ought to. BUG=400674 Review URL: https://codereview.chromium.org/533493004 Cr-Commit-Position: refs/heads/master@{#292932}
-
jochen authored
The popup blocker will block them anyways, and if it's disabled, we shouldn't change the disposition chosen by the web page BUG=158274 Review URL: https://codereview.chromium.org/527913002 Cr-Commit-Position: refs/heads/master@{#292931}
-
pasko authored
Review URL: https://codereview.chromium.org/474933005 Cr-Commit-Position: refs/heads/master@{#292930}
-
sky authored
. ICU may be initialized twice: once by the test suite, secondly by the app. . window_mamanger_app_.host_ may be deleted by the time we get to the destructor to try and remove something. Add check for this. BUG=none TEST=none R=viettrungluu@chromium.org Review URL: https://codereview.chromium.org/516523004 Cr-Commit-Position: refs/heads/master@{#292929}
-
zhaoqin authored
on Dr.Memory bot TBR=juberti@chromium.org BUG=389132 NOTRY=true Review URL: https://codereview.chromium.org/534603003 Cr-Commit-Position: refs/heads/master@{#292928}
-
zhaoqin authored
TBR=xians@chromium.org BUG=409485 NOTRY=true Review URL: https://codereview.chromium.org/527983002 Cr-Commit-Position: refs/heads/master@{#292927}
-
kinaba authored
BUG=none Review URL: https://codereview.chromium.org/527213002 Cr-Commit-Position: refs/heads/master@{#292926}
-
treib authored
Tiny 0.18% regression was introduced in a blink roll: https://chromeperf.appspot.com/report?tests=sizes%2Fchrome-data&masters=Chromium&bots=chromium-rel-linux&checked=core&rev=292909 BUG=409852 TBR=tkent@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/530583003 Cr-Commit-Position: refs/heads/master@{#292925}
-
bartfab authored
This CL adds a new key type for Chrome OS authentication and cryptohome encryption, a base64-encoded salted SHA256 hash. This will be the first key type supported by the credentials passing API. BUG=367847 TEST=Extended unit test Review URL: https://codereview.chromium.org/515153002 Cr-Commit-Position: refs/heads/master@{#292924}
-
mustaq authored
Completed the path for touch orientation attributes (i.e. radiusX, radiusY and rotationAngle of a touch ellipse) from android to Blink. BUG=381394 Review URL: https://codereview.chromium.org/494833003 Cr-Commit-Position: refs/heads/master@{#292923}
-
Marcin Kosiba authored
This updates the manifest to incorporate newest changes to the AOSP frameworks/webview project. BUG=None TESTS=compile on aosp bot R=torne@chromium.org Review URL: https://codereview.chromium.org/527183003 Cr-Commit-Position: refs/heads/master@{#292922}
-
earthdok authored
Roll libc++ to r216548. Roll libc++abi to r216482. This rolls in ASan container annotations (among other things). BUG=397963 TBR=glider@chromium.org NOTRY=true TEST=ASan, TSan Review URL: https://codereview.chromium.org/520733002 Cr-Commit-Position: refs/heads/master@{#292921}
-
wjmaclean authored
In preparation for moving to multiple HostZoomMaps (one-per StoragePartition), it is helpful to simplify ZoomController by removing the prefs machinery for DefaultZoomLevel, and instead rely on getting this value from the HostZoomMap. The calls to ZoomController::UpdateState() that used to be triggered directly by the prefs changes still occur, though by a roundtrip from PrefsTabHelper via IPC to RenderViewImpl and then by IPC back to the HostZoomMap, which in turn notifies its observers. This only happens in cases where the change in DefaultZoomLevel actually causes the RenderViewImpl to change its zoom, so it is a subtle change in behaviour from before. BUG=335317 Review URL: https://codereview.chromium.org/508263002 Cr-Commit-Position: refs/heads/master@{#292920}
-
mcasas authored
BUG=408089 Review URL: https://codereview.chromium.org/530983002 Cr-Commit-Position: refs/heads/master@{#292919}
-
mfomitchev authored
BUG=401604 Review URL: https://codereview.chromium.org/524623004 Cr-Commit-Position: refs/heads/master@{#292918}
-
ankit2.kumar authored
Setting height for Suggestion popup correctly for portrait as well as landscape mode so that it is scrollable and does not overlap with IME. BUG=409619 Review URL: https://codereview.chromium.org/517403003 Cr-Commit-Position: refs/heads/master@{#292917}
-
lliabraa authored
Xcode 6 introduced behavior in the iOS Simulator where the software keyboard does not appear if a hardware keyboard is connected. This CL enables the software keyboard when a gtest app starts up. BUG=392433 Review URL: https://codereview.chromium.org/514223002 Cr-Commit-Position: refs/heads/master@{#292916}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#292915}
-
skia-deps-roller authored
https://skia.googlesource.com/skia/+log/eb2662c08f07764491a17e0a397cdbeb0e2c05c1..1cbc68f9659f15206d920dacd434ddf4b658ad1f CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=jvanverth@google.com Review URL: https://codereview.chromium.org/521823005 Cr-Commit-Position: refs/heads/master@{#292914}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/2856bb101929ce5d4253129818f8f2d9e981bba7..d61a485818c6e67e43934ccd3c6cd453994bebf9 TBR=hclam@chromium.org,tkent@chromium.org Review URL: https://codereview.chromium.org/521903004 Cr-Commit-Position: refs/heads/master@{#292913}
-
vkuzkokov authored
1024 is the first port that doesn't require priveleged access and 32767 is the last port that isn't used as ephemeral. BUG=409658 Review URL: https://codereview.chromium.org/529913003 Cr-Commit-Position: refs/heads/master@{#292912}
-
alemate authored
to correct profile. BUG=409501,407373 TEST=manual Review URL: https://codereview.chromium.org/531613002 Cr-Commit-Position: refs/heads/master@{#292911}
-
yoshiki authored
BUG=348487 TEST=manual Review URL: https://codereview.chromium.org/534493002 Cr-Commit-Position: refs/heads/master@{#292910}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/134c73f37a69c2a294d8263fc7e103e75854ffed..2856bb101929ce5d4253129818f8f2d9e981bba7 TBR=hclam@chromium.org,tkent@chromium.org Review URL: https://codereview.chromium.org/533613003 Cr-Commit-Position: refs/heads/master@{#292909}
-
hashimoto authored
To componentize sad_tab related code, move IDS_LEARN_MORE to outside of chrome. BUG=402485 TBR=sky@chromium.org for include fix under chrome/browser Review URL: https://codereview.chromium.org/530963002 Cr-Commit-Position: refs/heads/master@{#292908}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/105703b3eee3e0aa988ebc778fba8911fafa1195..134c73f37a69c2a294d8263fc7e103e75854ffed TBR=hclam@chromium.org,tkent@chromium.org Review URL: https://codereview.chromium.org/534483002 Cr-Commit-Position: refs/heads/master@{#292907}
-
vasilii authored
BUG=387079 Review URL: https://codereview.chromium.org/440423003 Cr-Commit-Position: refs/heads/master@{#292906}
-
calamity authored
This CL removes the page switcher from the experimental app list's apps grid view. The normal app list should be unaffected. BUG=406222 Review URL: https://codereview.chromium.org/521823004 Cr-Commit-Position: refs/heads/master@{#292905}
-
henrika authored
BUG=405449 Review URL: https://codereview.chromium.org/524393002 Cr-Commit-Position: refs/heads/master@{#292904}
-
Paweł Hajdan, Jr authored
This is needed for std::sort. I detected the issue when building against system protobuf-2.6.0. Likely some header is no longer implicitly/indirectly #included. BUG=none R=miu@chromium.org Review URL: https://codereview.chromium.org/528743002 Cr-Commit-Position: refs/heads/master@{#292903}
-
mostynb authored
Followup to https://codereview.chromium.org/411973004 We haven't officially switched over to using c++11 everywhere yet, so this patch replaces c++11 style enum scope with c++03 style scope. BUG=392621 Review URL: https://codereview.chromium.org/526193002 Cr-Commit-Position: refs/heads/master@{#292902}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#292901}
-
mgiuca authored
They now come after the fixed pages (start page and apps grid). BUG=406222 Review URL: https://codereview.chromium.org/526983002 Cr-Commit-Position: refs/heads/master@{#292900}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/ad26197593255ddf08b445e3862c804b11738dd4..105703b3eee3e0aa988ebc778fba8911fafa1195 TBR=hclam@chromium.org,tkent@chromium.org Review URL: https://codereview.chromium.org/527133002 Cr-Commit-Position: refs/heads/master@{#292899}
-
hashimoto authored
BUG=None Review URL: https://codereview.chromium.org/530873003 Cr-Commit-Position: refs/heads/master@{#292898}
-
Sadrul Habib Chowdhury authored
Move the resources for the pdf plugin out of //content into //components. Also, reuse the same code for getting the resource from PepperPDFHost and PPB_PDF_Impl. BUG=401242 R=blundell@chromium.org, jam@chromium.org, raymes@chromium.org Review URL: https://codereview.chromium.org/506473003 Cr-Commit-Position: refs/heads/master@{#292897}
-