summaryrefslogtreecommitdiffstats
path: root/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* Fill passwords if password manager is disabled.ttr314@googlemail.com2012-11-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | As of now, filling passwords is directly dependent on the manager being enabled in the settings. However, the password manager is supposed to fill previously stored passwords even when disabled. Changes introduced by the patch are as following: - Remove IsFillingEnabled() and update code relying on method accordingly. - Add test to ensure that password saving depends on manager enabled preference. - Add test to ensure that passwords are filled on a disabled password manager. - Add myself to AUTHORS file. Contributed by Timo Reimann <ttr314@googlemail.com> R=isherman@chromium.org BUG=158296 Review URL: https://chromiumcodereview.appspot.com/11361142/ Review URL: https://chromiumcodereview.appspot.com/11361142 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166878 0039d316-1c4b-4281-b951-d872f2087c98
* Add more conditions to reload when --reload-killed-tab option is used.simon.hong81@gmail.com2012-11-031-1/+1
| | | | | | | | | | BUG=NONE TEST=compiles Review URL: https://chromiumcodereview.appspot.com/11342055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165831 0039d316-1c4b-4281-b951-d872f2087c98
* Make chromedriver test suites compatible with python2.7yang.gu@intel.com2012-10-241-0/+1
| | | | | | | | | | | | | BUG = http://code.google.com/p/chromedriver/issues/detail?id=165 TEST = src/chrome/test/webdriver/test/run_webdriver_tests.py src/chrome/test/webdriver/test/run_chromedriver_tests.py Contributed by yupingx.chen@intel.com Review URL: https://chromiumcodereview.appspot.com/11236062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163791 0039d316-1c4b-4281-b951-d872f2087c98
* Clear the favicon of a tab when navigating to a url on a different host.pkotwicz@chromium.org2012-10-241-0/+1
| | | | | | | | | | Contributed by etienne@atnnn.com BUG=28515 Review URL: https://chromiumcodereview.appspot.com/11198007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163752 0039d316-1c4b-4281-b951-d872f2087c98
* Adding Mohamed I. Hammad <ibraaaa@gmail.com> to the AUTHORS fileibraaaa@gmail.com2012-10-211-0/+1
| | | | | | | | | BUG=NONE Review URL: https://chromiumcodereview.appspot.com/11235018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163211 0039d316-1c4b-4281-b951-d872f2087c98
* Logging: pass logging related cmd line options to utility processqiankun.miao@intel.com2012-10-181-0/+1
| | | | | | | | | | | | | | | Logging doesn't work in utility process due to the related command line options are not passed to utility process. For example, run " ./chrome --vmodule=unpacker=1 --enable-logging=stderr", DVLOG(1) message in unpacker.cc can not be output correctly. This patch passes the related command line options to utility process. BUG= TEST=--enable-logging=stderr --vmodule=unpacker=1, then open chrome://extensions, drag a foo.crx in the page, you can see the DVLOG message " Installing extension ". Review URL: https://chromiumcodereview.appspot.com/11103028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162665 0039d316-1c4b-4281-b951-d872f2087c98
* Add myself to AUTHORSjosh.triplett@intel.com2012-10-131-0/+1
| | | | | | | | | | | | | | | | | This change should go in before the patches I've submitted and had reviewed, such as https://codereview.chromium.org/11103018/ . Contributed by Josh Triplett <josh.triplett@intel.com> BUG=None TEST=None Change-Id: Iab5fd3ca1ae0d10555ab625b7094c3c08e1f7e2a Review URL: https://chromiumcodereview.appspot.com/11121004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161700 0039d316-1c4b-4281-b951-d872f2087c98
* Issue-141903: Rename "descheduled" trace event for gpu swap to something ↵rubentopo@gmail.com2012-10-091-0/+1
| | | | | | | | | | | | | | understandable Changed Descheduled to ProcessSwap, added authors entry. BUG=141903 TEST= Review URL: https://chromiumcodereview.appspot.com/10967034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160793 0039d316-1c4b-4281-b951-d872f2087c98
* Enable GpuMemoryManagerTest.StubMemoryStatsForLastManageTests on Android.qtc746@motorola.com2012-10-051-1/+1
| | | | | | | | | | | GpuMemoryManagerTest.StubMemoryStatsForLastManageTests was failing in Android, and disabled in revision 147576. Failed test was fixed in 147695 and hence it is safe re-enable it now. Review URL: https://chromiumcodereview.appspot.com/11028031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160366 0039d316-1c4b-4281-b951-d872f2087c98
* Cursor jumps to end of omnibox when activating keyword mode via inserted spaceMHX348@motorola.com2012-10-051-0/+1
| | | | | | | | | | | | | | | | | | When 'keyword' search mode is activated by inserting a space between keyword and search string, the old caret position should be retained. The caret should be positioned at the start of the search string after stripping the keyword string from the user text. Patch from Joe Thomas <mhx348@motorola.com>. BUG=142803 TEST=Browser unit test, steps as mentioned in the bug report R=pkasting@chromium.org Review URL: https://chromiumcodereview.appspot.com/11034019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160312 0039d316-1c4b-4281-b951-d872f2087c98
* Use the cpuid instruction to generate the CPU brand string. And chunyang.dai@intel.com2012-10-041-0/+1
| | | | | | | | | | | | | use this string to check whether the cpu is Intel Atom processor. This change is to make sure the 2D canvas acceleration is enabled on Atom / windows system. BUG=151500 Review URL: https://chromiumcodereview.appspot.com/11009011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160226 0039d316-1c4b-4281-b951-d872f2087c98
* Add an about:flags entry for CSS Shaders. mvujovic@adobe.com2012-09-131-0/+1
| | | | | | | | | | BUG=141433 TEST=Check that CSS Shaders can be enabled and disabled in about:flags Review URL: https://chromiumcodereview.appspot.com/10913254 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156658 0039d316-1c4b-4281-b951-d872f2087c98
* Initial implementation of experimental SystemInfo.Storage API for Mac OSjoshua.lock@intel.com2012-09-101-0/+1
| | | | | | | | | | | This matches the current Windows implementation. BUG=141229, 145101 TEST=browser_tests --gtest_filter=SystemInfoStorageApiTest.* and manual Review URL: https://chromiumcodereview.appspot.com/10876101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155777 0039d316-1c4b-4281-b951-d872f2087c98
* chrome/browser should build on the x86_64 architecture.badea@adobe.com2012-08-211-0/+1
| | | | | | | | | | BUG=143395 TEST=32/64-bit chrome/browser builds without errors. TBR=mac64 Review URL: https://chromiumcodereview.appspot.com/10825447 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152572 0039d316-1c4b-4281-b951-d872f2087c98
* Add jakob.j.w to AUTHORS file.csilv@chromium.org2012-08-201-0/+1
| | | | | | | | BUG=none TBR=dbeam@chromium.org Review URL: https://chromiumcodereview.appspot.com/10834412 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152359 0039d316-1c4b-4281-b951-d872f2087c98
* use type std::string instead of integer for MediaLogEvent::TOTAL_BYTES_SETchangbin.shao@intel.com2012-08-161-0/+1
| | | | | | | | | | | | | because overflow happens for integer larger than 2^31. original review url: http://codereview.chromium.org/10828226 BUG=120328 Review URL: https://chromiumcodereview.appspot.com/10832334 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151861 0039d316-1c4b-4281-b951-d872f2087c98
* Add CSS exclusions command-line switchbear.travis@gmail.com2012-08-111-0/+2
| | | | | | | | | | Connects a command-line switch to the exclusions WebRuntimeFeature methods added for https://bugs.webkit.org/show_bug.cgi?id=91420 Contributed by betravis@adobe.com Review URL: https://chromiumcodereview.appspot.com/10832183 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151172 0039d316-1c4b-4281-b951-d872f2087c98
* pageNumerForElementById is a test specific API and can be moved to ↵kaustubh.ra@gmail.com2012-07-261-0/+1
| | | | | | | | window.internals Review URL: https://chromiumcodereview.appspot.com/10800093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148610 0039d316-1c4b-4281-b951-d872f2087c98
* Add libc6-i386 lib32gcc1 in dev_list.halton.huo@intel.com2012-07-251-1/+1
| | | | | | | | | | | | | | Native client toolchain still need some extra 32 bit libraries belong to packages libc6-i386 and lib32gcc1. Instead of adding all 32-bit libraries, adding above two packages in common (64-bit and 32-bit) makes more sense. TEST=build on 64-bit linux BUG=138234 Review URL: https://chromiumcodereview.appspot.com/10810035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148356 0039d316-1c4b-4281-b951-d872f2087c98
* What steps will reproduce the problem?mmaerean@adobe.com2012-07-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | 1. temporarily activate the x86_64 architecture (add 'ARCHS': 'x86_64' right after 'SDKROOT': 'macosx<(mac_sdk)' in build/common.gypi and then run gclient runhooks to generate the xcodeproj files). 2. start the build of src/ui/ui.xcodeproj in Xcode. What is the expected result? src/ui/ui.xcodeproj should build with no errors or warnings. What happens instead? The following compile-time error occurs: In file included from chromium/trunk/src/ui/gfx/image/image_skia_util_mac.mm:5: ../ui/gfx/image/image_skia_util_mac.h:13:9: error: unknown type name 'CGSize' typedef CGSize NSSize; BUG=137673 TBR=mac64 Review URL: https://chromiumcodereview.appspot.com/10789037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148114 0039d316-1c4b-4281-b951-d872f2087c98
* This change list fixed the issue of #135391, sometimes the channel_id of ↵samuel.xu@intel.com2012-07-031-0/+1
| | | | | | | | | | | | Logged IPC message is empty BUG=135391 TEST=about:ipc using debug windows version chromium Review URL: https://chromiumcodereview.appspot.com/10701052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145242 0039d316-1c4b-4281-b951-d872f2087c98
* Removes reference counting of syncable::Directory::Kernelrlarocque@chromium.org2012-06-221-0/+1
| | | | | | | | | | | No longer required, syncable::Directory is responsible now for deleting the dir kernel BUG=119360 Review URL: https://chromiumcodereview.appspot.com/10540089 Patch from Sergio Carlos Morales Angeles <carloschilazo@gmail.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143610 0039d316-1c4b-4281-b951-d872f2087c98
* If we show a replacement plug-in when the real one is not initialized correctly,pan.deng@intel.com2012-06-201-0/+1
| | | | | | | | | | | | | we should release the origin WebPluginImpl object, otherwise memory leak will happen. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10536192 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143138 0039d316-1c4b-4281-b951-d872f2087c98
* [MIPS] Adding atomic ops for MIPS architecture.petarj@mips.com2012-06-181-0/+1
| | | | | | | | | | | | Initial commit for atomic operations on MIPS architecture. BUG=https://code.google.com/p/chromium/issues/detail?id=130022 TEST=make chrome Review URL: https://chromiumcodereview.appspot.com/10448043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142663 0039d316-1c4b-4281-b951-d872f2087c98
* gyp: move target 'gdk' into chromeos==0 because we not use gtk/gdk anymore ↵rb@radix.io2012-06-141-0/+1
| | | | | | | | | | | | | | | | | | on ChromeOS. Add myself to the AUTHORS file. BUG=None TEST=Compiled Contributed by Rene Bolldorf <rb@radix.io> Change-Id: Ic3538eb83b59b42dbbb62d9ebc4c4b2fded67011 Review URL: https://chromiumcodereview.appspot.com/10543119 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142183 0039d316-1c4b-4281-b951-d872f2087c98
* Avoid leaking any files from SQLiteFeaturesTest.paivanof@gmail.com2012-06-131-0/+1
| | | | | | | | | | | Patch from Pavel Ivanov <paivanof@gmail.com> BUG=130498 TEST=On Linux /tmp/SQLStatementTest.db-journal is not left after execution. Review URL: https://chromiumcodereview.appspot.com/10542096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141849 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream commit in trunk:shess@chromium.org2012-06-121-0/+1
| | | | | | | | | | | | | | | | | | | | | http://www.sqlite.org/src/info/f9c4a7c8f4 Upstream commits in branch-3.7.6: http://www.sqlite.org/src/info/a61786e760 (third hunk) http://www.sqlite.org/src/info/e6a04bf9f1 (correction) I have left out the comment addition seen in the trunk commit, because the backport to the 3.7.6 branch doesn't include it. [Patch from Evangelos Foutras <evangelos@foutrelis.com> ] BUG=122525 TEST=distros using gcc4.7 shouldn't crash. see bug. R=shess@chromium.org Review URL: https://chromiumcodereview.appspot.com/10387026 Patch from Evangelos Foutras <evangelos@foutrelis.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141687 0039d316-1c4b-4281-b951-d872f2087c98
* There was no indication that there were no results found when doing a search ↵dubroy@chromium.org2012-06-071-0/+1
| | | | | | | | | | | | | | | | in History (chrome://chrome/history/). The message used is "No search results found." Contributed by tom.cassiotis@gmail.com. BUG=35762 TEST=Manual TBR=estade@chromium.org Review URL: https://chromiumcodereview.appspot.com/10536055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141025 0039d316-1c4b-4281-b951-d872f2087c98
* Fix GPU acceleration failure with single process modejin.a.yang@intel.com2012-06-041-0/+1
| | | | | | | | | | | | | | | | | | It's still useful to debug in single process mode. This is a regression caused by recent change: gpu info collection has removed from thread startup and will do on demand. But for normal mode we have GpuMain to do GL interface binding at startup while none for single process mode. So we should do GL binding for single process mode at thread start up, otherwise Gpu acceleration will fail because no GL binding will be found. BUG=130258 TEST= Review URL: https://chromiumcodereview.appspot.com/10441089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140263 0039d316-1c4b-4281-b951-d872f2087c98
* Show page title on content shell window (for Linux, Windows and Mac)hongbo.min@intel.com2012-06-011-0/+1
| | | | | | | | | | BUG=129998 TEST= Review URL: https://chromiumcodereview.appspot.com/10458003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140059 0039d316-1c4b-4281-b951-d872f2087c98
* Add native debugging support for no-root modehaitao.feng@intel.com2012-05-311-0/+1
| | | | | | | | | | BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10448096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139767 0039d316-1c4b-4281-b951-d872f2087c98
* Move the web dialogs code to src/ui/web_dialogs from src/chromemazda@chromium.org2012-05-311-0/+1
| | | | | | | | | | | | | | Also moved the web dialogs classes into ui namespace. The original patch was sent by Jake Helfert <jake@helfert.us>. This patch was created based on Jake's patch. BUG=125841 TEST=try Review URL: https://chromiumcodereview.appspot.com/10448066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139757 0039d316-1c4b-4281-b951-d872f2087c98
* Move the MessageLoopForUI::Start() after the creation of ↵shouqun.liu@intel.com2012-05-311-0/+1
| | | | | | | | | | | | | | MessageLoopForUI::current(). Make it no SEGV on the loading and running of content native library from the content_shell. BUG=130275 TEST= Review URL: https://chromiumcodereview.appspot.com/10449070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139733 0039d316-1c4b-4281-b951-d872f2087c98
* Add the target ABI option for apk based test runneryongsheng.zhu@intel.com2012-05-301-0/+1
| | | | | | | | | | | | | | Remove the hardcode directory name 'armeabi' and replace it with the Android target ABI information. Trivial gyp changes that are android-specific; TBRing some owners TBR=mark@chromium.org,jam@chromium.org,sky@chromium.org BUG=128944 TEST= Review URL: https://chromiumcodereview.appspot.com/10383263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139512 0039d316-1c4b-4281-b951-d872f2087c98
* validate CHROME_SRC setting to avoid confusionjames.wei@intel.com2012-05-301-0/+1
| | | | | | | | | | BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10409048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139480 0039d316-1c4b-4281-b951-d872f2087c98
* Add clintstaley and mitchellwrosen (@chromium.org) to the Authors filemal@google.com2012-05-301-0/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139465 0039d316-1c4b-4281-b951-d872f2087c98
* Issue 121063 fixed: Drag and dropping a file named ↵dcheng@chromium.org2012-05-291-0/+1
| | | | | | | | | | | | | | | | | [something].[andmore].[ext] from Chrome to a folder results in a filename named [something].[ext] Method WebContentsDragWin::PrepareDragForFileContents has been updated to deal with filenames like [something].[andmore].[ext] correctly. BUG=121063 TEST=1. Find a file named with the following pattern [something].[andmore].[ext] 2. Drag and drop the file(picture) to a folder You can use the picture attached to the issue page at http://code.google.com/p/chromium/issues/detail?id=121063 Review URL: https://chromiumcodereview.appspot.com/10257025 Patch from Alexey Korepanov <alexkorep@gmail.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139386 0039d316-1c4b-4281-b951-d872f2087c98
* hange AUTHORS individual signers to match the addresses theymal@google.com2012-05-281-10/+10
| | | | | | | | | | | | | | | | | | | | | gave when signing the contributors agreement: 1. brunocalvignac@gmail.com --> bruno@flock.com 2. mhanenb@gmail.com --> mhahnenb@andrew.cmu.edu 3. alexgartrell@gmail.com --> agartrell@cmu.edu 4. chamal.desilva@gmail.com --> chamalsl@yahoo.com 5. ryan.sleevi@gmail.com --> ryan-chromium-dev@sleevi.com 6. peter@lvp-media.com --> peter@chromium.org 7. David Futcher <bobbo@ubuntu.com> --> david.mike.futcher@gmail.com 8. ramgo@yahoo-inc.com --> ramkumar.gokarnesan@gmail.com 9. qtc746@motorola.com --> nayankk@motorola.com 10. programe@gmail.com --> progame@chromium.org R= None BUG= None TEST= None git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139267 0039d316-1c4b-4281-b951-d872f2087c98
* Remove litl.com, intel.com, and novell.com wildcard from AUTHORS:mal@google.com2012-05-281-3/+1
| | | | | | | | | | | | | | 1. litl.com never signed a corporate CLA 2. intel.com lists specific contributors authorized to commit, so a wildcard is inappropriate. 3. Novell's corporate CLA authorizes Brian Merrell, and he's contributed as bgmerrell@gmail.com (added that address) R= None TEST= None BUG= None git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139264 0039d316-1c4b-4281-b951-d872f2087c98
* This is based on a patch from Alexandre Abreu ↵finnur@chromium.org2012-05-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | (http://codereview.chromium.org/9963120/) that I've modified slightly to work on Windows. Modifies the external extension preferences loader to load not only external_extensions.json but also extensions based on standalone per-extension json files. The new json files should be named <extension-id>.json and formatted as such: { "external_crx": "<relative path from the .json file>", "external_version": "x.x" } Also, for Linux, added a new search path: /usr/share/[chromium|google-chrome]/extensions. And finally, modifies the documentation to account for that change and to deprecate the external_extension.json files uses. BUG=75174 TEST=None Review URL: https://chromiumcodereview.appspot.com/10260010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134892 0039d316-1c4b-4281-b951-d872f2087c98
* net: support SHA512 hashes in DNSSEC chains.agl@chromium.org2012-04-171-0/+1
| | | | | | | | | | | | Patch-by: Simon Arlott BUG=122239 TEST=https://chromium-122239.test.lp0.eu/ Review URL: http://codereview.chromium.org/10082010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132612 0039d316-1c4b-4281-b951-d872f2087c98
* Better check if argc is 0 because argv[0] is later used.erik.sjolund@gmail.com2012-04-171-0/+1
| | | | | | Review URL: http://codereview.chromium.org/10093005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132580 0039d316-1c4b-4281-b951-d872f2087c98
* Add DTLS support to NSS, contributed by Eric Rescorla.wtc@chromium.org2012-03-301-0/+1
| | | | | | | | | | R=rsleevi@chromium.org BUG=120938 TEST=none Review URL: http://codereview.chromium.org/9764001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129778 0039d316-1c4b-4281-b951-d872f2087c98
* Added the command line flag that enables CSS Shaders: "--enable-css-shaders".achicu@adobe.com2012-03-291-0/+1
| | | | | | | | | BUG=119861 TEST= Review URL: http://codereview.chromium.org/9839073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129598 0039d316-1c4b-4281-b951-d872f2087c98
* C++ code generated by generate_bindings.py was assigning a variable withing ↵trprice@gmail.com2012-03-281-0/+1
| | | | | | | | | | | | | | in if() statement (Visual Studio 2010 warning C4706). I moved the assignment of the variable to the line before the if() statement so that the assignment of the variable happens outside of the if() statement. Additionally, I added myself to the AUTHORS file. I filled out the Contributor License Agreement a while back, but didn't add myself to AUTHORS at that point. BUG=chromium:81439 Review URL: http://codereview.chromium.org/9836106 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129479 0039d316-1c4b-4281-b951-d872f2087c98
* Description: Video decode in hardware on ARM platform.arun.m@samsung.com2012-03-191-0/+1
| | | | | | | | | | | | | | | This patch modifies the GpuVideoDecodeAccelerator machinery to enable HW decode on certain platforms. In case of some ARM platforms, the texture memory allocated by GPU(glTexImage2D) cannot be shared with other devices such as a seperate HW decoder. So a Pixmap buffer is allocated and an EGL Image is created from the pixmap handle. This EGL Image is sharable between the HW Decoder and the GPU. TEST=omx_video_decode_accelerator_unittest Review URL: http://codereview.chromium.org/9724030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127554 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 127174 - Added Samsung to AUTHORS.fischman@chromium.org2012-03-161-1/+0
| | | | | | | | | | | NOTRY=true Review URL: http://codereview.chromium.org/9702116 TBR=fischman@chromium.org Review URL: https://chromiumcodereview.appspot.com/9706106 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127183 0039d316-1c4b-4281-b951-d872f2087c98
* Added Samsung to AUTHORS.fischman@chromium.org2012-03-161-0/+1
| | | | | | | | NOTRY=true Review URL: http://codereview.chromium.org/9702116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127174 0039d316-1c4b-4281-b951-d872f2087c98
* fixed about:flags by switching onclick to onchange for select elementstephen.searles@gmail.com2012-03-131-0/+1
| | | | | | | | | | BUG=107798 TEST=multi-state works on mac in chrome:flags Review URL: http://codereview.chromium.org/9669036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126342 0039d316-1c4b-4281-b951-d872f2087c98
* Add deviceorientation.absolute. hexinchao@gmail.com2012-03-121-0/+1
| | | | | | | | | | | | The corresponding work has been done in WebKit: https://bugs.webkit.org/show_bug.cgi?id=51742 BUG=68517 TEST=Manual testing. Review URL: http://codereview.chromium.org/9320061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126119 0039d316-1c4b-4281-b951-d872f2087c98