summaryrefslogtreecommitdiffstats
path: root/chrome/app
Commit message (Collapse)AuthorAgeFilesLines
* Implemented policy for disabling the bookmark bar.pastarmovj@chromium.org2011-04-111-1/+17
| | | | | | | | | BUG=49604 TEST=unit_tests ConfigurationPolicy* Review URL: http://codereview.chromium.org/6718039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81102 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Fix resizing ugliness in collected cookies dialog.bauerb@chromium.org2011-04-111-8/+8
| | | | | | | | | | | | | | XIB changes: Increase minimum height of the sheet, make "close" button move when resizing horizontally. No screens this time, to spare me the embarassment. Just assume that it looks like it's supposed to now ;-) BUG=63650 TEST=resizing the collected cookies sheet doesn't look ugly. Review URL: http://codereview.chromium.org/6821005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81079 0039d316-1c4b-4281-b951-d872f2087c98
* Replace larger throbber by correctly scaled onesoshima@google.com2011-04-081-0/+0
| | | | | | | | | | | | | | app/resources/large_throbber.png is 1154x32, should be 1152x32. Width needs to be exactly a multiple of the height. BUG=none TEST=none landing for saintlou: original CL http://codereview.chromium.org/6810023 Review URL: http://codereview.chromium.org/6825011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80976 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Show block/unblock radio buttons in blocked cookie bubble.bauerb@chromium.org2011-04-081-221/+302
| | | | | | | | | | | | | Screenz: http://www.dropmocks.com/mTgcv (image bubble for comparison). XIB changes: Add radio button matrix to ContentBlockedCookies.xib, hooked up to the |allowBlockRadioGroup_| outlet of the File's Owner. Send |allowBlockedToggled:| message to File's Owner from it. BUG=63646 TEST=see bug for manual test Review URL: http://codereview.chromium.org/6824002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80937 0039d316-1c4b-4281-b951-d872f2087c98
* Strings for locale change notification (provided by Brian Rakowski)dilmah@chromium.org2011-04-081-2/+2
| | | | | | | | | BUG=chromium:77999 TEST=None Review URL: http://codereview.chromium.org/6815018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80922 0039d316-1c4b-4281-b951-d872f2087c98
* Support for fileBrowserPrivate extension file selection apis.achuith@chromium.org2011-04-071-0/+81
| | | | | | | | BUG=chromium-os:13045 TEST=rginda's filemanager will use/test this api. Review URL: http://codereview.chromium.org/6728032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80820 0039d316-1c4b-4281-b951-d872f2087c98
* Detect download errors.ahendrickson@chromium.org2011-04-071-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | When a download error occurs, we now mark it as "Interrupted", and display the new status on the Download Shelf. This is handled through the OnResponseCompleted() method, from: DownloadResourceHandler -> DownloadFileManager -> DownloadManager The latter checks the error value, and if not zero calls DownloadError(). DownloadError() marks the download as interrupted (stopping the progress timer), updates the download history, and updates its Observers. DownloadItem::DownloadState now has a new state, INTERRUPTED. There are also new display strings that show up on interrupted downloads in the download shelf and download page. BUG=35278 TEST=Pass unit and browser tests. Also, run a python server that behaves as described below, connect to it, and observe that "Interrupted" shows up in the item on the download shelf. Check that the item behaves as if it were cancelled. The Python server should respond to a GET request with a content length that is large, then provide several chunks of data (but less than the specified length) and then send a 'No file' response (code 204) and close the connection. Review URL: http://codereview.chromium.org/6613024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80803 0039d316-1c4b-4281-b951-d872f2087c98
* Basic support for ppapi trusted broker process: --type=ppapi-broker.ddorwin@chromium.org2011-04-072-1/+10
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6803016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80792 0039d316-1c4b-4281-b951-d872f2087c98
* Change text of DNS prefetch option to Network prediction option.cbentzel@chromium.org2011-04-072-8/+7
| | | | | | | | | | | | | | | | | | The "DNS Prefetch" option currently controls DNS prefetching, TCP preconnection, and prerendering of pages. This modifies the text string to replace this, and changes variable names to reflect it. The underlying preference name remains the same so settings are not lost. However, I changed the policy name to make name changes consistent. If this does not migrate well, I will retain the old policy name. BUG=77783 TEST=Existing tests, make sure text is correct in browser. Review URL: http://codereview.chromium.org/6793045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80768 0039d316-1c4b-4281-b951-d872f2087c98
* Rename keyboard layouts to make them more consistent.satorux@chromium.org2011-04-071-46/+46
| | | | | | | | | | | Check spellings and fix typos accordingly. BUG=chromium-os:13704 TEST=confirm that the new keyboard layout names are used on the netbook Review URL: http://codereview.chromium.org/6792044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80743 0039d316-1c4b-4281-b951-d872f2087c98
* Replacing 'off the record' with 'incognito' in comments and a string in the ↵vipul.bhasin@gmail.com2011-04-071-1/+1
| | | | | | | | generated_resources file Review URL: http://codereview.chromium.org/6800007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80723 0039d316-1c4b-4281-b951-d872f2087c98
* Autofill extend profiles to include multi-valued fields, part 4 (UI)dhollowa@chromium.org2011-04-061-0/+12
| | | | | | | | | | | Adds multi-valued editing support for Autofill address information. Name, phone, fax, and email fields have been converted to editable lists that allow the user to store variants for a given address. BUG=65625 TEST=Manual: add, update, and delete multi-value items for name, phone, fax, and email. Review URL: http://codereview.chromium.org/6735065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80710 0039d316-1c4b-4281-b951-d872f2087c98
* Update notification iconsdpolukhin@chromium.org2011-04-064-0/+1
| | | | | | | | | BUG=chromium-os:9164 TEST=Manual Review URL: http://codereview.chromium.org/6806008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80620 0039d316-1c4b-4281-b951-d872f2087c98
* Hook up enrollment login with GAIA auth.mnissler@chromium.org2011-04-061-6/+6
| | | | | | | | | | | | With this, the enrollment UI is now functional up to the point of actually passing the auth credentials on to the policy subsystem. BUG=chromium-os:13277 TEST=manual Review URL: http://codereview.chromium.org/6759055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80598 0039d316-1c4b-4281-b951-d872f2087c98
* Implement login and confirmation UI for enterprise enrollment screenmnissler@chromium.org2011-04-061-0/+33
| | | | | | | | | | | | This adds a WebUI-based flow to the enterprise enrollment screen that first prompts for credentials and then shows a confirmation screen. BUG=chromium-os:13277 TEST=manual Review URL: http://codereview.chromium.org/6778014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80597 0039d316-1c4b-4281-b951-d872f2087c98
* Disable registration of Breakpad's signal handler for Native Clientmseaborn@chromium.org2011-04-061-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | This partially undoes r71459. This fixes a security vulnerability that occurs when the NaCl revision is updated to r4598 or later. That revision changes NaCl's sel_main_chrome.c so that it no longer registers a signal handler, but instead leaves Breakpad's signal handler (registered by Chrome) in place. The vulnerability would allow NaCl untrusted code to escape NaCl's inner sandbox on x86-32 Linux. This is because although NaCl's signal handler knows how to safely handle faults from NaCl x86-32 sandboxed code, Breakpad's signal handler does not. Breakpad's signal handler does not restore %gs. BUG=http://code.google.com/p/nativeclient/issues/detail?id=1607 TEST=assertion to be added on the NaCl side (http://codereview.chromium.org/6798008/) Review URL: http://codereview.chromium.org/6677168 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80581 0039d316-1c4b-4281-b951-d872f2087c98
* UX: Fix balloon strings.sadrul@chromium.org2011-04-051-2/+2
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6735070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80532 0039d316-1c4b-4281-b951-d872f2087c98
* Mac: Make cmd-shift-v an altenate shortcut for "paste and match style"thakis@chromium.org2011-04-051-7/+35
| | | | | | | | | | | | | nib changes: Duplicated the "paste and match style" menu and put it below the existing item. Change the upper item's shortcut to cmd-shift-v, marked the lower item to "alternate". BUG=41472 TEST=Copy some html text, then go to a rich text editor, e.g. http://developer.yahoo.com/yui/examples/editor/simple_editor.html . Paste the text with cmd-v, it should look styled. Undo, paste with cmd-shift-v, it shouldn't. Undo, paste with cmd-shift-opt-v (the system default shortcut for this), it still shouldn't be styled. All three shortcuts should blink the "Edit" menu. Review URL: http://codereview.chromium.org/6735045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80476 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: open devtools upon F12 on Windows and Mac.pfeldman@chromium.org2011-04-051-0/+1
| | | | | | | | BUG=56375 Review URL: http://codereview.chromium.org/6792049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80450 0039d316-1c4b-4281-b951-d872f2087c98
* Add APN strings that are not used at the momentdpolukhin@chromium.org2011-04-051-0/+6
| | | | | | | | | BUG=chromium-os:12012 TEST=none Review URL: http://codereview.chromium.org/6735055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80444 0039d316-1c4b-4281-b951-d872f2087c98
* Generated resources for mobile networks scanning UI.altimofeev@chromium.org2011-04-051-0/+13
| | | | | | | | | BUG=chromium-os:12013 TEST=none Review URL: http://codereview.chromium.org/6792045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80439 0039d316-1c4b-4281-b951-d872f2087c98
* Read ChromeOS version numbers from file before sandboxing and cache them.dgozman@chromium.org2011-04-051-0/+11
| | | | | | | | BUG=chromiumos-os:11573 TEST=Check that user agent in javascript contains correct CrOS version. Review URL: http://codereview.chromium.org/6771012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80438 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: s/relaunch/restart/ in various strings.derat@chromium.org2011-04-051-14/+35
| | | | | | | | | | | | I'm also removing the title from the "update recommended" message box. BUG=chromium-os:13031 TEST=built and ran it; checked strings on about and flags pages and in upgrade dialog Review URL: http://codereview.chromium.org/6677117 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80396 0039d316-1c4b-4281-b951-d872f2087c98
* Turn on the History Quick Provider by default.mrossetti@chromium.org2011-04-041-6/+0
| | | | | | | | | | | Restrict maximum number of results from the HQP to 3 (kMaxMatches) not the 10 it was previously. Tune the scoring algorithm so that less relelvant HQP matches don't push out more relevant matches from other autocomplete providers. BUG=78152,78182,77591 TEST=Updated unit tests. Review URL: http://codereview.chromium.org/6759067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80368 0039d316-1c4b-4281-b951-d872f2087c98
* New strings for change picture feature.avayvod@chromium.org2011-04-041-1/+16
| | | | | | | | | | R=dilmah@chromium.org BUG=chromium-os:2348 TEST=None Review URL: http://codereview.chromium.org/6792025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80341 0039d316-1c4b-4281-b951-d872f2087c98
* apps: Notify the user if an app's background page crashes.sadrul@chromium.org2011-04-021-8/+6
| | | | | | | | | | | | | | | Add a new notification for when an app's background page crashes, and use this notification message to show a message to the user and allow to restart the app. Extension-crashes also create balloon notifications instead of infobars. BUG=78167,78126 TEST=existing ExtensionCrashRecoveryTest.* tests. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=80128 Review URL: http://codereview.chromium.org/6731038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80259 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 80128 - apps: Notify the user if an app's background page crashes.sadrul@chromium.org2011-04-011-6/+8
| | | | | | | | | | | | | | | | Add a new notification for when an app's background page crashes, and use this notification message to show a message to the user and allow to restart the app. Extension-crashes also create balloon notifications instead of infobars. BUG=none TEST=existing ExtensionCrashRecoveryTest.* tests. Review URL: http://codereview.chromium.org/6731038 TBR=sadrul@chromium.org Review URL: http://codereview.chromium.org/6788018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80193 0039d316-1c4b-4281-b951-d872f2087c98
* Extracted camera UI from UserImageView to TakePhotoView.avayvod@chromium.org2011-04-011-0/+3
| | | | | | | | | | | | | | Extracted camera logic from UserImageScreen to CameraController. Added Take Photo button to Personal settings page and dialog that allows taking a new picture. R=dpolukhin@chromium.org BUG=chromium-os:2348 TEST=Verify that after first login picture taking screen is working as expected. Go to chrome://settings/personal and click Take Photo button, take a new picture using the dialog. Review URL: http://codereview.chromium.org/6778011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80135 0039d316-1c4b-4281-b951-d872f2087c98
* apps: Notify the user if an app's background page crashes.sadrul@chromium.org2011-04-011-8/+6
| | | | | | | | | | | | | Add a new notification for when an app's background page crashes, and use this notification message to show a message to the user and allow to restart the app. Extension-crashes also create balloon notifications instead of infobars. BUG=none TEST=existing ExtensionCrashRecoveryTest.* tests. Review URL: http://codereview.chromium.org/6731038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80128 0039d316-1c4b-4281-b951-d872f2087c98
* Correction in the caption and label of a policy in the policy template.sunandt@google.com2011-03-311-2/+2
| | | | | | | | BUG=77826 TEST=none Review URL: http://codereview.chromium.org/6749042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80095 0039d316-1c4b-4281-b951-d872f2087c98
* Default Pepper Flash to running out-of-process, with a command-line option tobrettw@chromium.org2011-03-311-0/+6
| | | | | | | | | | force it to run in-process. TEST=manual BUG=none Review URL: http://codereview.chromium.org/6780026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80071 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 80026 - Support for fileBrowserPrivate extension file selection apis.achuith@chromium.org2011-03-311-94/+0
| | | | | | | | | | | BUG=chromium-os:13045 TEST=NONE Review URL: http://codereview.chromium.org/6712036 TBR=achuith@chromium.org Review URL: http://codereview.chromium.org/6737034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80032 0039d316-1c4b-4281-b951-d872f2087c98
* Support for fileBrowserPrivate extension file selection apis.achuith@chromium.org2011-03-311-0/+94
| | | | | | | | BUG=chromium-os:13045 TEST=NONE Review URL: http://codereview.chromium.org/6712036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80026 0039d316-1c4b-4281-b951-d872f2087c98
* Updated resources temporary assets from issue 6730040 and added new onessaintlou@chromium.org2011-03-3168-38/+124
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6758033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80023 0039d316-1c4b-4281-b951-d872f2087c98
* Alter the installer policy check to allow System-level installations to be ↵robertshield@chromium.org2011-03-312-6/+0
| | | | | | | | | | | | installed on top of user-level installations. Remove a now-unused installer string. BUG=73253 TEST=Install user-level Chrome at version X. Install system-level install at the same version. System level install succeeds. Review URL: http://codereview.chromium.org/6726032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80005 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Fix warnings in MainMenu.xib.rsesek@chromium.org2011-03-311-0/+34
| | | | | | | | | | | | The issue was that CrApplication moved to content, and so was no longer a direct member of chrome.xcodeproj. No actual XIB changes; just synchronizing .h files. BUG=none TEST=Build Chromium.app and don't get any XIB warnings from MainMenu.xib. Review URL: http://codereview.chromium.org/6783018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80001 0039d316-1c4b-4281-b951-d872f2087c98
* Add SMS notificationdpolukhin@chromium.org2011-03-313-0/+8
| | | | | | | | | BUG=chromium-os:12006 TEST=Manual, send SMS while logged in and see desktop notification Review URL: http://codereview.chromium.org/6776015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79987 0039d316-1c4b-4281-b951-d872f2087c98
* Use the "DNS prefetch" button to control whether prerender is enabled/disabled.cbentzel@chromium.org2011-03-311-15/+0
| | | | | | | | | | | This also removes prerender from about:flags. BUG=77783 TEST=Force prerender on [via --prerender=enabled] and toggle the checkbox on/off to dynamically adjust prerender. Review URL: http://codereview.chromium.org/6771018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79986 0039d316-1c4b-4281-b951-d872f2087c98
* Disable uninstalling and editing permissions for policy controlled extensions.pastarmovj@chromium.org2011-03-311-0/+3
| | | | | | | | | | | Continuation of the work on Jochen's CL 4115004. BUG=63599 TEST=unit_tests: ExtensionServiceTest suite. Review URL: http://codereview.chromium.org/6680001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79982 0039d316-1c4b-4281-b951-d872f2087c98
* AllowOutdatedPlugins policy.joaodasilva@chromium.org2011-03-311-1/+17
| | | | | | | | | | BUG=74435 TEST=unit_tests, set the AllowOutdatedPlugins policy and open a page running an outdated plugin. Review URL: http://codereview.chromium.org/6676113 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79964 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a typo in the "password changed" message.mdm@chromium.org2011-03-311-1/+1
| | | | | | Review URL: http://codereview.chromium.org/6740009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79936 0039d316-1c4b-4281-b951-d872f2087c98
* Show extension load path for unpacked extensions.bolms@chromium.org2011-03-301-1/+4
| | | | | | | | | BUG=74619 TEST=Install unpacked extension, go to chrome://extensions, verify that the path is shown. Review URL: http://codereview.chromium.org/6695031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79901 0039d316-1c4b-4281-b951-d872f2087c98
* Making the close button of the download shelf take the whole space to the ↵hansl@chromium.org2011-03-301-3/+18
| | | | | | | | | | | | right as a hit target. For this, we needed to add an Outlet to the download shelf and link the HoverCloseButton object in the XIB to it. BUG=14739 TEST=Fullscreen the browser window. Download a file to make the download bar appear. Ensure that clicking anywhere below to to the right of the close button closes the download bar. This includes the edge-most pixels. Ensure that this does not work when the browser is not in fullscreen mode. Review URL: http://codereview.chromium.org/6775002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79876 0039d316-1c4b-4281-b951-d872f2087c98
* Adding prerender to task managerdominich@google.com2011-03-302-0/+4
| | | | | | | | | BUG=75191 TEST=Start a prerender (search for cnn) and observe that a Prerender item appears in the Task Manager. Observe that it disappears when the prerender expires or you navigate to the page. Review URL: http://codereview.chromium.org/6746010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79842 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Added remaing screens of the PIN/PUK unlock flow.nkostylev@chromium.org2011-03-301-5/+5
| | | | | | | | | | | | No integration with backend (flimflam) yet. Mocks http://folder/kenmoore/mocks/chromeos/GSM/Drafts_23March2011/ BUG=chromium-os:12007 TEST=Manual. Review URL: http://codereview.chromium.org/6731050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79801 0039d316-1c4b-4281-b951-d872f2087c98
* Increase height of login captcha view.falken@chromium.org2011-03-301-1/+1
| | | | | | | | | | | This default works better for many languages, which were getting truncated previously. BUG=chromium-os:13238 TEST=manually on netbook Review URL: http://codereview.chromium.org/6675038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79800 0039d316-1c4b-4281-b951-d872f2087c98
* Mac: Add profile button to browser windowsail@chromium.org2011-03-301-17/+169
| | | | | | | | | | | | | | | | | | | | This is bascially a port of mirandac's multi-profile UI change from Windows to the Mac. This change just adds the UI bits. It's not hooked up to the backend yet. XIB Changes: - Added a popup button the TabBar. Screenshots: https://docs.google.com/leaf?id=0B0Odde3V7EhWYTkxZGFmNzgtMTI5OC00MDRkLTkzZjAtYWM1NmRiNTM5ZWQz&hl=en https://docs.google.com/leaf?id=0B0Odde3V7EhWMGM2ZjZkMTEtYjUzMC00YmQ2LThlZjktYzY1NGFhYzRmMjJi&hl=en BUG=None TEST=Ran. Verified that the button was positioned correctly. Verified that changing the current profile changed the name on the profile button. Review URL: http://codereview.chromium.org/6696096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79787 0039d316-1c4b-4281-b951-d872f2087c98
* Adding Print To PDF option in drop-down list in print previewdpapad@chromium.org2011-03-291-0/+4
| | | | | | | | | BUG=69508 TEST=In the PrintPreview tab, open the printer drop-down list, "Print To PDF" option should appear at the end. Review URL: http://codereview.chromium.org/6750017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79765 0039d316-1c4b-4281-b951-d872f2087c98
* Back out r77530, making the helper app an LSUIElement as it had been prior tomark@chromium.org2011-03-291-2/+2
| | | | | | | | | | | | | | | that revision. LSBackgroundOnly didn't actually prevent the helper app from creating UI, but it did prevent it from bringing windows to the foreground. This resulted in a poor experieince with plugins presenting, for example, file open/save dialogs. BUG=none TEST=Flash-based attachment uploader in Gmail should show standard file open dialog in the foreground when "Attach a file" is selected. There should only be one Chrome icon in the dock while Chrome is running. Review URL: http://codereview.chromium.org/6771019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79711 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 696karen@chromium.org2011-03-2988-346/+6707
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79708 0039d316-1c4b-4281-b951-d872f2087c98