summaryrefslogtreecommitdiffstats
path: root/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* Serialized loading of icons for files in the Downloads interface. This allowsrryk.ua@gmail.com2011-12-211-0/+1
| | | | | | | | | | | | | to open downloaded files faster. Previously file was not opened until all the icons were loaded. Contributed by rryk.ua@gmail.com BUG=62976 Review URL: http://codereview.chromium.org/8803001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115231 0039d316-1c4b-4281-b951-d872f2087c98
* Aura: Cursor should hide when touch event triggered by touchscreenjamescook@chromium.org2011-12-201-0/+1
| | | | | | | | | | | | | Original patch at http://codereview.chromium.org/8819014/ by Junmin Zhu <junmin.zhu@intel.com> BUG=106001 TEST=manually TBR=ben@chromium.org Review URL: http://codereview.chromium.org/8989023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115193 0039d316-1c4b-4281-b951-d872f2087c98
* Standardize StringToInt{,64} interface.tedvessenes@gmail.com2011-12-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | These changes address issue #106655. All variants of StringToInt have been converted to use the StringPiece class. One instance of conversion, in chrome/browser/history/text_database.cc, required copying an underlying string. This is because the string type in question could use 8 or 16 bit characters depending on the OS type, and because StringPiece is not implemented as a template, the code cannot specify whether to create a StringPiece or StringPiece16. This should be remedied in a future CL. R=erikwright@chromium.org BUG=106655 TEST= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=114929 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=114944 Review URL: http://codereview.chromium.org/8921006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114993 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 114944 - Standardize StringToInt{,64} interface.battre@chromium.org2011-12-181-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | Revert due to compile breakage on ChromeOS. These changes address issue #106655. All variants of StringToInt have been converted to use the StringPiece class. One instance of conversion, in chrome/browser/history/text_database.cc, required copying an underlying string. This is because the string type in question could use 8 or 16 bit characters depending on the OS type, and because StringPiece is not implemented as a template, the code cannot specify whether to create a StringPiece or StringPiece16. This should be remedied in a future CL. R=erikwright@chromium.org BUG=106655 TEST= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=114929 Review URL: http://codereview.chromium.org/8921006 TBR=tedvessenes@gmail.com Review URL: http://codereview.chromium.org/8990002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114945 0039d316-1c4b-4281-b951-d872f2087c98
* Standardize StringToInt{,64} interface.tedvessenes@gmail.com2011-12-181-0/+1
| | | | | | | | | | | | | | | | | | | | | These changes address issue #106655. All variants of StringToInt have been converted to use the StringPiece class. One instance of conversion, in chrome/browser/history/text_database.cc, required copying an underlying string. This is because the string type in question could use 8 or 16 bit characters depending on the OS type, and because StringPiece is not implemented as a template, the code cannot specify whether to create a StringPiece or StringPiece16. This should be remedied in a future CL. R=erikwright@chromium.org BUG=106655 TEST= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=114929 Review URL: http://codereview.chromium.org/8921006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114944 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 114929 - Standardize StringToInt{,64} interface.rsleevi@chromium.org2011-12-171-1/+0
| | | | | | | | | | | | | | | | | | | | | | These changes address issue #106655. All variants of StringToInt have been converted to use the StringPiece class. One instance of conversion, in chrome/browser/history/text_database.cc, required copying an underlying string. This is because the string type in question could use 8 or 16 bit characters depending on the OS type, and because StringPiece is not implemented as a template, the code cannot specify whether to create a StringPiece or StringPiece16. This should be remedied in a future CL. R=erikwright@chromium.org BUG=106655 TEST= Review URL: http://codereview.chromium.org/8921006 TBR=tedvessenes@gmail.com Review URL: http://codereview.chromium.org/8984007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114930 0039d316-1c4b-4281-b951-d872f2087c98
* Standardize StringToInt{,64} interface.tedvessenes@gmail.com2011-12-171-0/+1
| | | | | | | | | | | | | | | | | | | These changes address issue #106655. All variants of StringToInt have been converted to use the StringPiece class. One instance of conversion, in chrome/browser/history/text_database.cc, required copying an underlying string. This is because the string type in question could use 8 or 16 bit characters depending on the OS type, and because StringPiece is not implemented as a template, the code cannot specify whether to create a StringPiece or StringPiece16. This should be remedied in a future CL. R=erikwright@chromium.org BUG=106655 TEST= Review URL: http://codereview.chromium.org/8921006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114929 0039d316-1c4b-4281-b951-d872f2087c98
* Updating extensions code to use UTF16RDevlin.Cronin@gmail.com2011-12-171-1/+1
| | | | | | | | | | | Changes std::string error to string16 in various locations of the Extensions file, spanning up the tree from ExtensionErrorReporter and Extension::InitFromValue, with conversion to string16 beginning at extension_l10n_util::LocalizeExtension and Extension::Create. Later patches can continue/expand the conversion. BUG=71980 TEST=Run existing unit tests and browser tests, which have been adjusted for string16s. Review URL: http://codereview.chromium.org/8890086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114917 0039d316-1c4b-4281-b951-d872f2087c98
* Add Devlin Cronin to AUTHORS.aa@chromium.org2011-12-151-0/+1
| | | | | | Review URL: http://codereview.chromium.org/8968004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114725 0039d316-1c4b-4281-b951-d872f2087c98
* Add gauchun.dev@gmail.com to AUTHORS file.csilv@chromium.org2011-12-131-0/+1
| | | | | | | BUG=none Review URL: http://codereview.chromium.org/8917030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114140 0039d316-1c4b-4281-b951-d872f2087c98
* Release slotId of TouchEvent when USE_XI2_MT definedaofdwsl@gmail.com2011-12-091-0/+1
| | | | | | | | | | | | | | | When defined USE_XI2_MT, slot id of TouchEvent is maintained by a map of tracking id to slot id. Because tracking id will always keep increasing. The item should be released by TouchRelease to free the slot id for future use. BUG=106673 TEST=Manually Tested Review URL: http://codereview.chromium.org/8839004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113850 0039d316-1c4b-4281-b951-d872f2087c98
* Enhance sync-webkit-git.py to support more actions.tony@chromium.org2011-12-011-0/+1
| | | | | | | | | | | | | | | -r/--revision: desired revision. Use DEPS if not given. -b/--branch: branch where to create gclient. Use origin/master if not given. -t/--tarball: Use tarball (http://src.chromium.org/svn/releases/) DEPS instead of src/DEPS. BUG=none TEST= ./tools/sync-webkit-git.py -r 97678 ./tools/sync-webkit-git.py -t 16.0.912.41 -b origin/svn_912 Review URL: http://codereview.chromium.org/8769001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112481 0039d316-1c4b-4281-b951-d872f2087c98
* GTK: Port ui/base/gtk to use avoid deprecated API and accessorsrobert.bradford@intel.com2011-11-291-0/+1
| | | | | | | | | | | | | | | | | | | | | New API used: gtk_widget_{set,get}_has_window - added 2.18 - replaces !GTK_WIDGET_NO_WINDOW gtk_widget_{set,get}_allocation - added 2.18 - replaces direct access gtk_bin_get_child - replaces direct access gtk_widget_get_window - added 2.14 - replaces direct access g_cclosure_marshal_VOID__BOXED - replaces gtk_marshal_VOID__BOXED With these changes this directory can compile with GSEAL enabled and deprecated functions disabled. BUG=79722 TEST=Compiles and also the ui_unittests pass Review URL: http://codereview.chromium.org/8646002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112027 0039d316-1c4b-4281-b951-d872f2087c98
* Implements the PowerSaveBlocker::ApplyBlock method for Linux systems. It usescristian.patrasciuc@gmail.com2011-11-291-0/+1
| | | | | | | | | | | | | | | | | | | | | D-Bus power managements interfaces (org.freedesktop.PowerManagement fro KDE4/XFCE and org.gnome.SessionManager for Gnome). The implementation consists of a Singleton class, DBusPowerSaveBlocker that handles the D-Bus connection and IO thread. The specific D-Bus interfaces, method calls and message processing is done in a DBusPowerSaveBlocker::Delegate. There are two different implementations for this delegate, one for KDE4/XFCE and one for Gnome. If there is an unsupported desktop environment, no D-Bus object is instantiated, and the ApplyBlock method won't do anything. BUG=33605 TEST=manual Review URL: http://codereview.chromium.org/8479005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111822 0039d316-1c4b-4281-b951-d872f2087c98
* Space key doesn't work in AURA enabled build because in case of space key,sadrul@chromium.org2011-11-141-0/+1
| | | | | | | | | | | | | WebInputEvent::Char event is not sent to WebKit. TBR=sky@chromium.org BUG=103753 TEST=Load a html page with a text box and check if space key works. Review URL: http://codereview.chromium.org/8461004 Patch from Amruth Raj <ckqr36@motorola.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109918 0039d316-1c4b-4281-b951-d872f2087c98
* chrome should show the context menu on menu key press though last_mouse_down ↵brk376@motorola.com2011-11-081-0/+1
| | | | | | | | | | | | | | is NULL. BUG=102828 TEST=1. Open https://bugs.webkit.org/ 2. Focus input field using 'Tab' key. 3. Press menu or Shift+F10 key to open context menu. 4. This should open a menu. Review URL: http://codereview.chromium.org/8503009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109065 0039d316-1c4b-4281-b951-d872f2087c98
* Change the dev toggle in Extensions options page to use text-align instead ↵progame@chromium.org2011-10-251-0/+1
| | | | | | | | | | | | of float so it mirrors properly in RTL UI. BUG=101461 TEST=Open chrome://extensions/. Notice the dev toggle is to the right for English UI and to the left for Hebrew UI. Review URL: http://codereview.chromium.org/8381034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107116 0039d316-1c4b-4281-b951-d872f2087c98
* Invalid URLs should not be added to startup page list.nqk836@motorola.com2011-10-241-0/+1
| | | | | | | | | | BUG=100658 TEST=Try to add an invalid URL in start pages list in chrome://setttings. It should have no effect. Review URL: http://codereview.chromium.org/8349030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106947 0039d316-1c4b-4281-b951-d872f2087c98
* Fix for a memory leak in views/controls/native/native_view_host_gtk.cctimurrrr@chromium.org2011-10-211-0/+1
| | | | | | | | | | | Landing a patch for Parag Radke, originally reviewed at http://codereview.chromium.org/8294008/ BUG=96368 TBR=sky Review URL: http://codereview.chromium.org/8353034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106696 0039d316-1c4b-4281-b951-d872f2087c98
* 97871: Bottom half of new tab button on tabstrip is not touchable.tony@chromium.org2011-10-191-0/+1
| | | | | | | | | | | | | | new-tab button hit rect doesnt extend to the bottom of the button. The touchable part of this + button is only the top half of it. Touches at the bottom half of the button do not register. Since the newtab button bitmap is different for touch and non-touch paths, the custom points should be updated for touch_ui path as per bitmap. BUG=97871 TEST=NONE Review URL: http://codereview.chromium.org/8316001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106377 0039d316-1c4b-4281-b951-d872f2087c98
* History: Hide 'edit items' button when there are no items to display.qghc36@motorola.com2011-10-191-0/+1
| | | | | | | | | | BUG=37978 TEST=Verify that history page with zero items should not display Edit Items button. Review URL: http://codereview.chromium.org/8334010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106251 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 106069 - Fix for Memory Leak 72698_bthestig@chromium.org2011-10-181-1/+0
| | | | | | | | | | | | | BUG=72698 TEST= Review URL: http://codereview.chromium.org/8330018 TBR=nrqv63@motorola.com Review URL: http://codereview.chromium.org/8349007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106112 0039d316-1c4b-4281-b951-d872f2087c98
* OpenBSD support for yasm.mark@chromium.org2011-10-181-1/+1
| | | | | | | | | | | | | - include the openbsd configuration for yasm - use the correct yasm_flags on every posix system except for mac Patch by Robert Nagy <robert.nagy@gmail.com> BUG= TEST= Review URL: http://codereview.chromium.org/8348002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106083 0039d316-1c4b-4281-b951-d872f2087c98
* Fix for Memory Leak 72698_bnrqv63@motorola.com2011-10-181-0/+1
| | | | | | | | | | BUG=72698 TEST= Review URL: http://codereview.chromium.org/8330018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106069 0039d316-1c4b-4281-b951-d872f2087c98
* Stopping unnecessary update of file name to stop resetting of selection in ↵rosen.dash@gmail.com2011-10-171-0/+1
| | | | | | | | | | | | | | chrome://downloads. BUG=100528 TEST=None Patch by: rosen.dash@gmail.com Review URL: http://codereview.chromium.org/8311016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105904 0039d316-1c4b-4281-b951-d872f2087c98
* Use rewritten url of a tab to find the zoom level from zoom map. Zoom map iswrm364@motorola.com2011-10-141-0/+1
| | | | | | | | | | | | | | maintained using rewritten URLs. Using GetURL() to find the zoom level will fail in case of rewritten URLs as GetURL() returns virtual_url which will be different from the rewritten URL. Contributed by wrm364@motorola.com BUG=94408 Review URL: http://codereview.chromium.org/8262011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105474 0039d316-1c4b-4281-b951-d872f2087c98
* Add ARM (asm) memset routines to skia buildblr.bmlab@gmail.com2011-10-131-0/+1
| | | | | | | | | ARM ASM optimized memset routines provide better performance for platforms (with/without NEON) ,compared to portable C - version Review URL: http://codereview.chromium.org/8262005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105310 0039d316-1c4b-4281-b951-d872f2087c98
* Fix build error while building with 'make' (Complete build).qtc746@motorola.com2011-10-131-0/+1
| | | | | | | | | | | Contributed by qtc746@motorola.com BUG:None TEST:None Review URL: http://codereview.chromium.org/8216006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105273 0039d316-1c4b-4281-b951-d872f2087c98
* OpenBSD and FreeBSD fixes for base.mark@chromium.org2011-10-131-0/+1
| | | | | | | | | | | | | OpenBSD and FreeBSD need -I/usr/local/include for <execinfo.h>. Use !#/usr/bin/env bash because on !linux it's not located there. Patch by Robert Nagy <robert@openbsd.org> BUG=none TEST=none Review URL: http://codereview.chromium.org/8228005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105257 0039d316-1c4b-4281-b951-d872f2087c98
* Fix compilation when use_aura is turned ON.vamshi@motorola.com2011-10-031-0/+1
| | | | | | | | | | | BUG=none TEST=none Patch by vamshi@motorola.com Review URL: http://codereview.chromium.org/8109001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103688 0039d316-1c4b-4281-b951-d872f2087c98
* Changes to get appropriate favicon for a URL which has icons for both touch ↵naveenbobbili@motorola.com2011-09-301-0/+1
| | | | | | | | | | | | and favicon types in DB. Since icon mappings are returned from DB in reverse sorted order (HistoryBackendTest.IconMappingsOrderTest) we need to run a loop on the vector to find the first match for the icon type and return the same. BUG=94897 TEST=Run HistoryBackendTest.IconMappingsOrderTest which confirms that we get a reverse sorted order icon mapping in the vector. Review URL: http://codereview.chromium.org/7969032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103496 0039d316-1c4b-4281-b951-d872f2087c98
* Add Pepper API to use UDP mtilburg@adobe.com2011-09-261-0/+4
| | | | | | | | | | | | author: mtilburg@adobe.com BUG=none TEST=tested with pepper flash Review URL: http://codereview.chromium.org/8036036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102817 0039d316-1c4b-4281-b951-d872f2087c98
* add Sanjoy Pal to AUTHORS.estade@chromium.org2011-09-241-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/8044006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102622 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 102101 - Displaying the extensions count in extensions settings page.finnur@chromium.org2011-09-221-1/+0
| | | | | | | | (Vetoed by the UI leads) BUG=96855TEST=Load chrome://settings/extensionSettings and see that the title format is now Extensions (xx) where xx is the number of installed extensions in the list. Also if there are no extensions loaded then the title should be Extensions.Patch by naveenbobbili@motorola.comReview URL: http://codereview.chromium.org/7932021TBR=naveenbobbili@motorola.com Review URL: http://codereview.chromium.org/7993001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102267 0039d316-1c4b-4281-b951-d872f2087c98
* CUPS printing: Define CUPS_PRINTER_SCANNER for Linux if CUPS is < 1.4chrelad@gmail.com2011-09-221-0/+1
| | | | | | | | | | BUG=97409 TEST=Try compiling on Linux with CUPS < 1.4 Review URL: http://codereview.chromium.org/7980036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102248 0039d316-1c4b-4281-b951-d872f2087c98
* Displaying the extensions count in extensions settings page.naveenbobbili@motorola.com2011-09-211-0/+1
| | | | | | | | | | | BUG=96855 TEST=Load chrome://settings/extensionSettings and see that the title format is now Extensions (xx) where xx is the number of installed extensions in the list. Also if there are no extensions loaded then the title should be Extensions. Patch by naveenbobbili@motorola.com Review URL: http://codereview.chromium.org/7932021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102101 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the spelling of the comment in ImeInput::IsCtrlShiftPressed.ehsan.akhgari@gmail.com2011-09-151-0/+1
| | | | | | | | | | | | Found when borrowing the code into Mozilla. BUG=96706 TEST= Review URL: http://codereview.chromium.org/7903008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101343 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed crash when a SinglesplitView gets embedded inside SingleSplitView.tfarina@chromium.org2011-09-151-0/+1
| | | | | | | | | | | | | | BUG=None TEST=Added test example double_split_view in views/examples. R=sky@chromium.org,oshima@chromium.org,tfarina@chromium.org Patch from Gajendra Singh <wxjg68@motorola.com> Review URL: http://codereview.chromium.org/7911001 Patch from Gajendra Singh <wxjg68@motorola.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101298 0039d316-1c4b-4281-b951-d872f2087c98
* Clean the SingletonLock only if there is no previous Chromium process running.amruthraj@motorola.com2011-09-131-0/+1
| | | | | | | | | | | BUG=96134 TEST=Launch three Chrome processes to see that the third one doesn't crash. Patch by amruthraj@motorola.com Review URL: http://codereview.chromium.org/7796030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100943 0039d316-1c4b-4281-b951-d872f2087c98
* Copy Mark Seaborn from the Native Client authors file to the Chromium authorsbrettw@chromium.org2011-08-261-0/+1
| | | | | | | | | | | | file. This makes the Native Client authors file a subset of the Chromium one so that we can update the copyright notices of the code we recently moved into the Chrome repo to be "Copyright the Chromium Authors." TEST=none BUG=none Review URL: http://codereview.chromium.org/7770001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98499 0039d316-1c4b-4281-b951-d872f2087c98
* Optimize all images in chrome/app and chrome/browser.tony@chromium.org2011-08-151-0/+1
| | | | | | | | | | | | | | | | | | | The following lossless PNG crunchers were used: - AdvPNG - OptiPNG - PNGCrush - PNGOUT Total savings: 1.001.550 bytes, i.e. almost 1 MB. Patch from Mathias Bynens <mathias@qiwi.be> BUG=chromium:92525 TEST=none Review URL: http://codereview.chromium.org/7638001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96786 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes a corner case bug in the HexStringToInt conversion function which ↵ali.akbar@gmail.com2011-08-121-0/+1
| | | | | | | | | | | | | | | | | | | | | caused the string "0x" to be treated as a valid hexadecimal number. Although the parsed result was 0, the boolean flag returned indicated that the hex number was in proper format The IteratorRangeToNumber class's Invoke function increments the string pointer by 2 if the string starts with "0x" or "0X" and the length is greater than *or equal* to 2 If the length of the string is 2, i.e "0x", after the pointer increment, the string would be empty and the function returns true as the parse result Changed the condition from "greater than or equal to" to "greater than" Added another test cases which now properly treats "0x" as an invalid hex string Contributed by ali.akbar@gmail.com BUG=92054 Review URL: http://codereview.chromium.org/7584031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96605 0039d316-1c4b-4281-b951-d872f2087c98
* Added a link to the downloads tab that opens the downloads folder.fhd@ubercode.de2011-07-281-0/+1
| | | | | | | | | | | | Contributed by fhd@ubercode.de BUG=8915 TEST=chrome://downloads has a link labeled "Open downloads folder" that opens the configured downloads folder. Review URL: http://codereview.chromium.org/7398026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94493 0039d316-1c4b-4281-b951-d872f2087c98
* Disable part of InProcessBrowserTest.InjectIDBKey to prepare for upstream ↵levin@chromium.org2011-07-191-0/+1
| | | | | | | | | | | | | changes. InProcessBrowserTest.InjectIDBKey depends on internal details about the format produced by WebSerializedScriptValue; this format will change should https://bugs.webkit.org/show_bug.cgi?id=63481 land. After the WebKit change is complete, this test will be re-enabled in a way that works with the new format. BUG=None TEST=This is a test modification. Review URL: http://codereview.chromium.org/7400030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93053 0039d316-1c4b-4281-b951-d872f2087c98
* Clean up of -Wunused-but-set-variable (gcc 4.6)pph34r@gmail.com2011-06-251-0/+1
| | | | | | | | | | BUG=80071 TEST=base_unittests Review URL: http://codereview.chromium.org/7232025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90489 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for Linux kernels >=3.0-rc1 in Python related build files by:tony@chromium.org2011-06-161-0/+1
| | | | | | | | | | | | | | | - replacing occurences of sys.platform == 'linux2' with sys.platform.startswith('linux') - congregating occurences of sys.platform in ('linux[X]', 'linuxY', ...) to sys.platform.startswith('linux') - adding the key 'linux3' to all relevant lookup dicts BUG=85845 TEST=Try building chromium on Linux >=3.0-r1 Review URL: http://codereview.chromium.org/7172016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89354 0039d316-1c4b-4281-b951-d872f2087c98
* Allow wildcard for corporate CLA. Add nvidia to AUTHORS.maruel@chromium.org2011-06-131-5/+14
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/7003151 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88891 0039d316-1c4b-4281-b951-d872f2087c98
* Add ruben to AUTHORS so people stop asking if he's signed the CLA.tony@chromium.org2011-05-271-0/+1
| | | | | | Review URL: http://codereview.chromium.org/7085010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87086 0039d316-1c4b-4281-b951-d872f2087c98
* Modifies the event handler for WM_APPCOMMAND events to return TRUE if the ↵mma.public@gmail.com2011-05-031-0/+1
| | | | | | | | | | | | | event was handled. Previously it returned 0 causing the event to bubble up to the DefWndProc, which would synthesize keypresses appropriate for the event and cause it to effectively be handled twice. This should fix double handling of events for people with devices that generate WM_APPCOMMAND messages (tablets, Logitech mice, etc...) BUG=19672 TEST=See various cases reported on bug Review URL: http://codereview.chromium.org/6901076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83975 0039d316-1c4b-4281-b951-d872f2087c98
* Send the 'page_url' parameter of the page (on which the right click was made tobrettw@chromium.org2011-04-201-0/+1
| | | | | | | | | | | | | | | open the context menu) as the 'referer' field of the http header field. This change is done for cases OPENLINKNEWTAB, OPENLINKNEWWINDOW, and NOT for OPENLINKOFFTHERECORD (Incognito). Also Https to Https transition must NOT send the referrer and this is checked in the 'OpenURL' method. Call to the ShouldHideReferrer method is done at render_view.cc Author Ramkumar Gokarnesan - ramgo@yahoo-inc.com BUG=1935 TEST=Try right click on a URL and click 'open link in new tab' or 'open link in new window' and see the referer information being sent as a part of the http header field. verify with wireshark / VS debugger. Original review http://codereview.chromium.org/6681030/ git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82323 0039d316-1c4b-4281-b951-d872f2087c98