- 21 May, 2014 40 commits
-
-
zea@chromium.org authored
Reason for revert: breaks linux compile http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20Builder&number=31999 BUG=362979 TBR=ananta@chromium.org Original CL: https://codereview.chromium.org/296643002 Review URL: https://codereview.chromium.org/298923002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272005 0039d316-1c4b-4281-b951-d872f2087c98
-
yjhong@chromium.org authored
Package removed: chromeos-0.0.1 Package removed: iceauth-1.0.4 Package removed: internal-0.0.7 Package removed: libICE-1.0.7 Package removed: libSM-1.2.0 Package removed: libXmu-1.1.0 Package removed: libXt-1.1.4 Package removed: python-updater-0.10 Package removed: xauth-1.0.6 Package removed: xinit-1.3.0 Package removed: xrdb-1.0.9 Package added: bootcomplete-login-0.0.1 Package added: chromeos-bsp-x86-alex-0.0.2 Package added: jsoncpp-0.6.0_rc2 Package added: salsa-0.0.1 Package added: tty-0.0.1 Package updated: GoogleKeyboardInput-keyboards from 1.3.1.2 to 1.3.2.1 Package updated: GoogleKeyboardInput-xkb from 1.0.1.2 to 1.0.3.1 Package updated: autotest from 0.0.1 to 0.0.2 Package updated: bluez from 5.4 to 5.17 Package updated: chromeos-chrome from 36.0.1918.0_rc to 36.0.1985.19_rc Package updated: chromeos-hangul from 1.1.0.0 to 1.2.0.1 Package updated: chromeos-init from 0.0.21 to 0.0.25 Package updated: coreutils from 8.20 to 8.22 Package updated: exfat-utils from 1.0.2_pre395 to 1.0.2_pre401 Package updated: fuse-exfat from 1.0.2_pre395 to 1.0.2_pre401 Package updated: google-breakpad from 1292 to 1303 Package updated: gtalk from 60800085 to 62219080 Package updated: input-tools from 4.1.0.0 to 4.1.2.7 Package updated: iputils from 20100418 to 20121221 Package updated: libnl from 1.1 to 3.2.14 Package updated: openssl from 1.0.1f to 1.0.1g Package updated: pepper-flash from 13.0.0.182 to 14.0.0.95 Package updated: perf from 3.13 to 3.14 Package updated: python-exec from 10000.1 to 2.0.1 License removed: Source License iceauth/COPYING License removed: Source License libICE/COPYING License removed: Source License libSM/COPYING License removed: Source License libXmu/COPYING License removed: Source License libXt/COPYING License removed: Source License xauth/COPYING License removed: Source License xinit/COPYING License removed: Source License xrdb/COPYING R=davidjames@google.com, vapier@chromium.org, xiyuan@chromium.org Review URL: https://codereview.chromium.org/292743014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272003 0039d316-1c4b-4281-b951-d872f2087c98
-
dalecurtis@google.com authored
TSAN doesn't comprehend the atomic ref count operation. BUG=239350 TEST=none TBR=jyasskin NOTRY=true Review URL: https://codereview.chromium.org/294663011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272002 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
R=darin@chromium.org Review URL: https://codereview.chromium.org/293033005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272001 0039d316-1c4b-4281-b951-d872f2087c98
-
keishi@chromium.org authored
BUG=374725,358235 Review URL: https://codereview.chromium.org/293993004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272000 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
The changes are to use the GetScaleForScaleFactor function to get the scale instead of GetImageScale. The latter function returns the current display scale on Windows which causes themes to break. The other change is in the ctor of the BrowserThemePack class where we add SCALE_FACTOR_100P to the list of supported scales as it is needed for default theme packs to work correctly. BUG=362979 R=oshima@chromium.org, pkotwicz@chromium.org, oshima Review URL: https://codereview.chromium.org/296643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271999 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@chromium.org authored
This removes most references to VarPrivate and InstancePrivate from OOP PDF. These APIs are deprecated and we'd like to remove them. In most cases where they are currently used, we can simply switch to using a PostMessage to communicate with the extension. In the case of modal dialogs, these need to run synchronously from the perspective of the PDF engine and so PostMessage isn't sufficient. Right now these calls still use InstancePrivate but we should switch to using a specific private API eventually. BUG=303491 Review URL: https://codereview.chromium.org/286933011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271998 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
Previously keyboard filters were selected using the per-platform filename exclusion rules, and that doesn't work for PNaCl plugin. Now both Mac and ChromeOS filters are compiled into the PNaCl plugin and selected in runtime. BUG=276739 Review URL: https://codereview.chromium.org/292103004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271997 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@chromium.org authored
This handles messages from the plugin that indicate that the page should be navigated to another URL or that the email editor should be opened. BUG=303491 Review URL: https://codereview.chromium.org/292653004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271996 0039d316-1c4b-4281-b951-d872f2087c98
-
rch@chromium.org authored
Currently, if both the main and alternate jobs fail, we mark alternate-protocol as broken. However, that's not really "fair" to the alternate-protocol. We should only mark it as broken in the alternate-protocol jobs fails and the main job succeeds. This is a bit tricky because the two jobs may complete in any order. Review URL: https://codereview.chromium.org/245663003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271994 0039d316-1c4b-4281-b951-d872f2087c98
-
ziran.sun@samsung.com authored
In terms of previewing on hover, treat password the same as Autofill. Functions are introduced to handle when a username selection is hovered over, password and the selected username are previewed, and cleared once preview is done. This preview also supports "character matching" preview, e.g. type first few letters of username in, but without affecting the password "inline autocompletion" feature. R=isherman@chromium.org, tsepez@chromium.org BUG=63421 Review URL: https://codereview.chromium.org/208453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271993 0039d316-1c4b-4281-b951-d872f2087c98
-
mef@chromium.org authored
- Add HttpUrlRequest callback for querying response headers. - Always close ReadableByteChannel once an HttpUrlRequest is started. BUG=354143 Review URL: https://codereview.chromium.org/268353013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271992 0039d316-1c4b-4281-b951-d872f2087c98
-
radhikabhar@chromium.org authored
Review URL: https://codereview.chromium.org/296703006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271991 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
Makes sure all the other functions are properly scoped. BUG=365012 TEST=covered by tests R=ben@chromium.org Review URL: https://codereview.chromium.org/292283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271989 0039d316-1c4b-4281-b951-d872f2087c98
-
jbauman@chromium.org authored
This limit is a bit arbitrary and may be getting hit by Google Docs, so double it. BUG=372909 Review URL: https://codereview.chromium.org/288343007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271988 0039d316-1c4b-4281-b951-d872f2087c98
-
miletus@chromium.org authored
content/common/content_param_traits_macros.h to ui/events/ipc/latency_info_param_traits This way, code that wants to use LatencyInfo over IPC don't have to depend on content/common, but a rather smaller target events.gyp:events_ipc. Also adds latency_info_nacl.gyp for a nacl build that wants to use LatencyInfo over IPC. BUG=355719 TEST=no functional change. Chrome builds. Review URL: https://codereview.chromium.org/291443006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271987 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
Make |DesktopWindowTreeHostX11::use_native_frame_| more robust. In particular, this CL ensures that widgets which expect to use the native frame (e.g. v2 apps, task manager) continue to do so even if DesktopWindowTreeHostX11::FrameTypeChanged() is called. BUG=348437 TEST=None Review URL: https://codereview.chromium.org/278823004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271986 0039d316-1c4b-4281-b951-d872f2087c98
-
vkuzkokov@chromium.org authored
Port forwarding tunnel test revealed a bug in stream_listen_socket on Windows. The last packet was not delivered to DidRead, DidClose was called instead. BUG=356617 Review URL: https://codereview.chromium.org/285263003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271985 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
BUG= R=scottmg@chromium.org Review URL: https://codereview.chromium.org/293963007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271982 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271970 0039d316-1c4b-4281-b951-d872f2087c98
-
dalecurtis@google.com authored
Syncs to head as of bebce653e5601ceafa004db0eb6b2c7d4d16f0c0. The roll requires us to stop using some deprecated features: - Replaces av_get_frame_defaults() with av_frame_unref() per docs. - Switches FFmpegVideoDecoder to use ref-counted frames. - Removes error concealment settings and disables error resilience for all platforms except ChromeOS (since it's required for mpeg4). Avoiding these also allows us to disable some deprecated features wholesale via #defines. BUG=119020,236611 TEST=all tests (and regression tests) pass under asan NOTRY=true R=jrummell@chromium.org, wolenetz@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=271945 Review URL: https://codereview.chromium.org/286953005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271969 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=None TEST=None R=scottmg@chromium.org Review URL: https://codereview.chromium.org/296153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271968 0039d316-1c4b-4281-b951-d872f2087c98
-
keybuk@chromium.org authored
BUG=None R=armansito@chromium.org, kalman@chromium.org Review URL: https://codereview.chromium.org/275863005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271967 0039d316-1c4b-4281-b951-d872f2087c98
-
hajimehoshi@chromium.org authored
This CL changes the logic to determine whether the Translate bubble is to be shown. Before this CL, it is not considered the case when the contents web view is NOT focused. This CL changes this logic to show the bubble when the content webview and an input element is focused and the user is NOT trying to show the bubble explicitly. The latter condition is checked by GetLocationBarView()->IsMouseHovered() because just after clicking the Translate icon on the Omnibox, the content web view might still be focused. BUG=372755 TEST=manual Review URL: https://codereview.chromium.org/289983002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271966 0039d316-1c4b-4281-b951-d872f2087c98
-
keybuk@chromium.org authored
BUG=None TBR=armansito Review URL: https://codereview.chromium.org/294163004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271965 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@chromium.org authored
Mark conformance/context/context-lost-restored.html as fail on win. (although it's win debug only, we haven't been able to separate debug from release yet) BUG=374378 TEST=win debug bots TBR=bajones@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/299713005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271964 0039d316-1c4b-4281-b951-d872f2087c98
-
zea@chromium.org authored
BUG=375840 TBR=haitaol@chromium.org Review URL: https://codereview.chromium.org/292153007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271963 0039d316-1c4b-4281-b951-d872f2087c98
-
haitaol@chromium.org authored
BUG=375894 TBR=zea@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/294903009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271962 0039d316-1c4b-4281-b951-d872f2087c98
-
dmazzoni@chromium.org authored
The issue was that we were posting an asynchronous accessibility event on the menu item view, and the menu item view was still around after the menu closed (just hidden, and owned by the menu runner), but the menu item view's delegate (the menu model adapter) had gone out of scope. BUG=327510 NOTRY=true Review URL: https://codereview.chromium.org/295903006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271961 0039d316-1c4b-4281-b951-d872f2087c98
-
wjywbs@gmail.com authored
Check whether the extension exists again in OnImageLoaded before showing the unstall dialog. R=mek@chromium.org,kalman@chromium.org BUG=375036 TEST=manual Review URL: https://codereview.chromium.org/293603002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271960 0039d316-1c4b-4281-b951-d872f2087c98
-
mtomasz@chromium.org authored
Before, if a modification time was InvalidDate, then it caused a crash on a DCHECK converting a string date to base::Time. Providers may return an incorrect date, and we shouldn't crash. This patch resolves this issue by removing the DCHECK and passing the invalid date to fileapi. TEST=unit_test: *FileSystemProvider*GetMetadata* BUG=248427 Review URL: https://codereview.chromium.org/295933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271959 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271958 0039d316-1c4b-4281-b951-d872f2087c98
-
caitkp@chromium.org authored
TEST=manual: Force a reset (manually edit a protected pref). Expect to see reset UI in chrome://settings, dismiss it, restart Chrome, expect no reset UI. BUG=374360 Review URL: https://codereview.chromium.org/294123003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271957 0039d316-1c4b-4281-b951-d872f2087c98
-
kbr@chromium.org authored
Broke gclient runhooks on Linux ChromiumOS Builder on Blink waterfall. Bugs 119020 and 236611 will be updated with details. > Roll FFmpeg for M37. > > Syncs to head as of bebce653e5601ceafa004db0eb6b2c7d4d16f0c0. The > roll requires us to stop using some deprecated features: > - Replaces av_get_frame_defaults() with av_frame_unref() per docs. > - Switches FFmpegVideoDecoder to use ref-counted frames. > - Removes error concealment settings and disables error resilience > for all platforms except ChromeOS (since it's required for mpeg4). > > Avoiding these also allows us to disable some deprecated features > wholesale via #defines. > > BUG=119020,236611 > TEST=all tests (and regression tests) pass under asan > NOTRY=true > R=jrummell@chromium.org, wolenetz@chromium.org > > Review URL: https://codereview.chromium.org/286953005 TBR=dalecurtis@google.com Review URL: https://codereview.chromium.org/296483012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271956 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
Changes from the first submit: - Submit a binary image file separately by dcommit in advance Original description: On Android, permission infobar appears for Web MIDI permission, but correct icon is not used. This change add a proper icon. BUG=339767 Review URL: https://codereview.chromium.org/292743004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271955 0039d316-1c4b-4281-b951-d872f2087c98
-
tturchetto@google.com authored
BUG=375853 TEST=This is test. Ran tests manually. Review URL: https://codereview.chromium.org/288263003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271954 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271953 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271952 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
These are disabled currently in the Android ARM GYP build. This patch disables it for all ARM builds since the warning appears when cross-compiling to ARM on Linux without Android (this isn't something people normally compile, so probably nobody noticed). R=thakis@chromium.org Review URL: https://codereview.chromium.org/299663014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271951 0039d316-1c4b-4281-b951-d872f2087c98
-
eseidel@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=174386:174434&mode=html TBR= BUG= NOTRY=true Review URL: https://codereview.chromium.org/294153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271950 0039d316-1c4b-4281-b951-d872f2087c98
-