summaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* RefCounted types should not have public destructors, Linux fixesrsleevi@chromium.org2012-05-189-61/+70
| | | | | | | | | | BUG=123295 TEST=none Review URL: https://chromiumcodereview.appspot.com/10392152 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137893 0039d316-1c4b-4281-b951-d872f2087c98
* Add new attention state to launcherdavemoore@chromium.org2012-05-182-1/+5
| | | | | | | | | BUG=119965 TEST=LauncherViewTest.LauncherItemStatus Review URL: https://chromiumcodereview.appspot.com/10386212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137878 0039d316-1c4b-4281-b951-d872f2087c98
* ui: Change ListModel to operate in size_t instead of int.tfarina@chromium.org2012-05-187-45/+47
| | | | | | | | | R=xiyuan@chromium.org TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10408009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137862 0039d316-1c4b-4281-b951-d872f2087c98
* Add trace events to measure GPU process startup timing and time to first ↵apatrick@chromium.org2012-05-182-11/+14
| | | | | | | | present. Review URL: https://chromiumcodereview.appspot.com/10386185 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137802 0039d316-1c4b-4281-b951-d872f2087c98
* ui: Export GetModifiersFromACCEL() function to fix win shared build.tfarina@chromium.org2012-05-181-1/+1
| | | | | | | | | BUG=128242 TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10399081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137793 0039d316-1c4b-4281-b951-d872f2087c98
* Pass event bitmask (shift, control, alt) to ui::Accelerator instead of booleans.tfarina@chromium.org2012-05-1819-47/+86
| | | | | | | | | | BUG=128242 R=ben@chromium.org TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/10399044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137792 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 137059 - Better fix for closing uber tray when clicking on Desktoppkotwicz@chromium.org2012-05-174-33/+9
| | | | | | | | | | | | | | Bug=None Test=Manual Review URL: https://chromiumcodereview.appspot.com/9877015 TBR=pkotwicz@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=137752 Review URL: https://chromiumcodereview.appspot.com/10383236 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137770 0039d316-1c4b-4281-b951-d872f2087c98
* Gets touch semantics working on windows. Specifically the following:sky@chromium.org2012-05-174-17/+53
| | | | | | | | | | | | | | | | . If you use a mouse then left click reorders and control-left click changes the visible tabs. . If you use a touch device left click moves the set of visible tabs and if you right click (corresponds to long press) then you reorder. Additionally we don't allow detaching on metro. BUG=123274 TEST=none R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10399073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137769 0039d316-1c4b-4281-b951-d872f2087c98
* Use Layer's target visibility instead of the current visibility in ↵mazda@chromium.org2012-05-171-10/+7
| | | | | | | | | | | | | | | Window::SetVisible. Widget::Show does not take effect if it's called while the hide animation is running. This CL modifies Window::SetVisible to check Layer's target visibility instead of Layer's current visibility so that Window::Show takes effect even when Window::Hide followed immediately by Window::Show. Also modified the widnow animation code so that Layer's target visibility is correctly set. BUG=127863 TEST=Tried repro steps (see BUG) and didn't crash. Passed aura_unittests and aura_shell_unittests. Review URL: https://chromiumcodereview.appspot.com/10387146 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137764 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 137736 because 137059 broke the bookmark bubble. In particular, ↵pkotwicz@chromium.org2012-05-172-36/+1
| | | | | | | | using the combo box. Review URL: https://chromiumcodereview.appspot.com/10382227 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137758 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 137752 - Revert 137059 - Better fix for closing uber tray when ↵fischman@chromium.org2012-05-174-9/+33
| | | | | | | | | | | | | | | | | clicking on Desktop Bug=None Test=Manual Review URL: https://chromiumcodereview.appspot.com/9877015 TBR=pkotwicz@chromium.org Review URL: https://chromiumcodereview.appspot.com/10383236 TBR=pkotwicz@chromium.org Review URL: https://chromiumcodereview.appspot.com/10382226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137755 0039d316-1c4b-4281-b951-d872f2087c98
* Compute the enclosing rectangle for circles/ellipses generated from a series ↵tdanderson@chromium.org2012-05-1713-5/+369
| | | | | | | | | | | | | of touch events For a sequence of {touchstart, touchmove*, touchend} events, compute the rectangle that encloses all of the circles/ellipses corresponding to the touch events. If the hardware is capable of collecting radius_x or radius_y, use the maximum of these two values as the radii values for the touch region. Otherwise use a default radius value of 15. BUG=122190 TEST=none Review URL: https://chromiumcodereview.appspot.com/10262023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137753 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 137059 - Better fix for closing uber tray when clicking on Desktoppkotwicz@chromium.org2012-05-174-33/+9
| | | | | | | | | | | | Bug=None Test=Manual Review URL: https://chromiumcodereview.appspot.com/9877015 TBR=pkotwicz@chromium.org Review URL: https://chromiumcodereview.appspot.com/10383236 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137752 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 137734 - Select theme resources from ResourceBundle at requested ↵fischman@chromium.org2012-05-1720-227/+106
| | | | | | | | | | | | | | | | | | scale factor. Return the best match for a requested scale factor when fetching raw image data from ResourceBundle. TBR=aa,abodenha BUG=123611 TEST=ResourceBundle.LoadImageResourceBytes Review URL: https://chromiumcodereview.appspot.com/10387010 TBR=flackr@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137738 0039d316-1c4b-4281-b951-d872f2087c98
* views: Do not set capture on a widget if it cannot be activated.sadrul@chromium.org2012-05-172-1/+36
| | | | | | | | | BUG=128566 TEST=views_unittests:WidgetTest.ActivationCapture Review URL: https://chromiumcodereview.appspot.com/10383234 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137736 0039d316-1c4b-4281-b951-d872f2087c98
* Select theme resources from ResourceBundle at requested scale factor.flackr@chromium.org2012-05-1720-106/+227
| | | | | | | | | | | | | | Return the best match for a requested scale factor when fetching raw image data from ResourceBundle. TBR=aa,abodenha BUG=123611 TEST=ResourceBundle.LoadImageResourceBytes Review URL: https://chromiumcodereview.appspot.com/10387010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137734 0039d316-1c4b-4281-b951-d872f2087c98
* Fix logging of string16s from gfx namespace on Windows.asvitkine@chromium.org2012-05-175-24/+28
| | | | | | | | | | | | I don't why this fixes it, but somehow having a SelectionModel << logging operator in the gfx namespace makes Visual Studio fail to find the << logging operator for string16 arguments. Per discussion with Scott, we decided to remove the << operators altogether and replace them with a ToString() function to be consistent with Rect, Size, etc. TEST=Check that adding a "LOG(INFO) << text();" line to RenderTextWin compiles. Review URL: https://chromiumcodereview.appspot.com/10332205 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137732 0039d316-1c4b-4281-b951-d872f2087c98
* ash: Select omnibox text on mouse up instead of down.derat@chromium.org2012-05-171-7/+11
| | | | | | | | | | | | | | | Defer selection of the text in an unfocused omnibox until the release event. Otherwise, all of the text starting from the left side is selected when the user is trying to highlight just a portion of the URL. BUG=128126 TEST=added, also did manual testing Review URL: https://chromiumcodereview.appspot.com/10386173 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137711 0039d316-1c4b-4281-b951-d872f2087c98
* Make Chrome limp briefly before freaking out with aura no ash.ben@chromium.org2012-05-173-1/+13
| | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10407022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137706 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a couple of bugs with the image skia implementationpkotwicz@chromium.org2012-05-171-1/+1
| | | | | | | | | Bug=124566 Test=Manual Review URL: https://chromiumcodereview.appspot.com/10389109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137684 0039d316-1c4b-4281-b951-d872f2087c98
* Update use of TimeDelta in chrome/browser/*, ui/views/*, and other places.tedvessenes@gmail.com2012-05-177-15/+21
| | | | | | | | | | R=ben@chromium.org BUG=108171 Review URL: https://chromiumcodereview.appspot.com/10026013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137682 0039d316-1c4b-4281-b951-d872f2087c98
* Add locale tray iconstevenjb@google.com2012-05-172-0/+1
| | | | | | | | | | TBR=ben, sadrul BUG=124726 TEST=See http://codereview.chromium.org/10391177/ Review URL: https://chromiumcodereview.appspot.com/10387180 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137677 0039d316-1c4b-4281-b951-d872f2087c98
* Remove ui-enable-dip optionoshima@chromium.org2012-05-179-138/+41
| | | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10310067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137659 0039d316-1c4b-4281-b951-d872f2087c98
* Let Chrome app handle Ash accelerators first if the app is launched as a window.yusukes@chromium.org2012-05-176-49/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, Ash accelerators are handled at a very early stage, right after a native key event is received by aura::RootWindowHost. This CL change the way of handling Ash accelerators as follows to make it more App friendly: 1. If no window is focused, handle an Ash accelerator immediately in ash/accelerators/accelerator_filter.cc in the same way as before. 2. Otherwise, do not handle it in ash/accelerators/accelerator_filter.cc but let a custom views::FocusManager handle it (see ash/shell.cc). There are 3 types of scenarios here depending on the type of the focused window: 2-a. If the focused window is a browser, and the browser is not for an app, let the custom focus manager pre-handle Ash accelerators before passing it to the browser (see PreHandleKeyboardEvent() in chrome/browser/ui/views/frame/browser_view.cc). 2-b. If the focused window is a browser, and the browser is for an app, let the app handle Ash accelerators first (see chrome/browser/ui/views/frame/browser_view.cc). If the accelerator is not consumed by the app, let the custom focus manager handle it. 2-c. If the focused window is not a browser, let the window handle Ash accelerators first. If the accelerator is not consumed by the window, then let the custom focus manager handle it. This means a WebView without the chrome/browser/ui/ layer can handle Ash accelerators first whenever needed. Other changes: chrome/browser/ui/views/frame/browser_view.cc: Support ET_KEY_RELEASED accelerators in BrowserView::PreHandleKeyboardEvent(). ui/views/focus/focus_manager.cc: Support ET_KEY_RELEASED accelerators. Also fix code for handing VKEY_MENU so that the Shift+Alt+ET_KEY_RELEASED accelerator for Ash could be handled correctly. This CL depends on http://codereview.chromium.org/10377158/ (by jochen), https://chromiumcodereview.appspot.com/10388023, http://codereview.chromium.org/10389035/, and https://chromiumcodereview.appspot.com/10332051/, and should not be submitted until the 4 CLs are landed. BUG=123856 TEST=ran aura_shell_unittests TEST=manual; launch Chromoting app as a window, connect to a Chromoting server, focus Chrome on the remote machine, press Ctrl-n, confirm a new window is opened on the remote machine. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=135791 Review URL: https://chromiumcodereview.appspot.com/10134036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137629 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 137622 - Fix a couple of bugs with the image skia implementationpkotwicz@chromium.org2012-05-178-39/+14
| | | | | | | | | | | | Bug=124566 Test=Manual Review URL: https://chromiumcodereview.appspot.com/10389109 TBR=pkotwicz@chromium.org Review URL: https://chromiumcodereview.appspot.com/10391179 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137625 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a couple of bugs with the image skia implementationpkotwicz@chromium.org2012-05-178-14/+39
| | | | | | | | | Bug=124566 Test=Manual Review URL: https://chromiumcodereview.appspot.com/10389109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137622 0039d316-1c4b-4281-b951-d872f2087c98
* app_list: Update colors and sizes for v2.xiyuan@chromium.org2012-05-175-34/+62
| | | | | | | | | | BUG=125964 TEST=none. Review URL: https://chromiumcodereview.appspot.com/10383199 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137584 0039d316-1c4b-4281-b951-d872f2087c98
* Add sms icon imagestevenjb@google.com2012-05-172-0/+1
| | | | | | | | | | TBR=sky,sadrul BUG=124724 TEST=none Review URL: https://chromiumcodereview.appspot.com/10388177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137579 0039d316-1c4b-4281-b951-d872f2087c98
* Notification for device scale factor changeoshima@chromium.org2012-05-1713-2/+70
| | | | | | | | | BUG=105165 TEST=updated compositor test to cover OnDeviceScaleFactorChagned. Review URL: https://chromiumcodereview.appspot.com/10391165 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137571 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce XGetImage() for GrabWindowSnapshot() in ChromeOS.mukai@chromium.org2012-05-168-0/+86
| | | | | | | | | BUG=119492 TEST=manually done Review URL: https://chromiumcodereview.appspot.com/10386124 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137556 0039d316-1c4b-4281-b951-d872f2087c98
* Add a ScopedPangoFontDescription helper class and use it.asvitkine@chromium.org2012-05-166-40/+58
| | | | | | | | | BUG=none TEST=compiles Review URL: https://chromiumcodereview.appspot.com/10406014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137555 0039d316-1c4b-4281-b951-d872f2087c98
* aura-x11: Install the dispatcher as a message-pump observer.sadrul@chromium.org2012-05-163-5/+20
| | | | | | | | | | | | | | | DispatcherLinux may not always receive all events (e.g. when a menu is running a nested message-loop). So install it a message-pump observer, so that all X events go through the DL. Also, turn off the check for X-event consistency on release builds. BUG=128183 TEST=none Review URL: https://chromiumcodereview.appspot.com/10377161 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137537 0039d316-1c4b-4281-b951-d872f2087c98
* Fix incorrect forcing of text directionality in canvas_skia.cc.asvitkine@chromium.org2012-05-161-16/+40
| | | | | | | | | | | | | | | | There were two issues: 1. RTL wrapping was simply not happening if your UI language locale was not RTL. Which made FORCE_RTL_DIRECTIONALITY not work. 2. RTL wrapping was not being applied in the SizeStringInt() path, which resulted in an inconsistency between the needed width for SizeStringInt() and DrawStringInt(), causing a problem with the label code resulting in truncation. This CL fixes both issues. BUG=128073, 105550 TEST=See testcases attached to bug. Review URL: https://chromiumcodereview.appspot.com/10384168 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137535 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the path to native_theme_resources.rcoshima@chromium.org2012-05-161-1/+1
| | | | | | | | | | TBR=ben@chromium.org BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10332209 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137531 0039d316-1c4b-4281-b951-d872f2087c98
* Support placeholder text in NativeTextfieldViews.xiyuan@chromium.org2012-05-164-9/+36
| | | | | | | | | | | | - Rename text_to_display_when_empty -> placehodler_text; - Draw placeholder text when there is no user text; BUG=none. TEST=none. Review URL: https://chromiumcodereview.appspot.com/10310131 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137529 0039d316-1c4b-4281-b951-d872f2087c98
* Move ui/gfx/resources to ui/base/native_theme/resourcesoshima@chromium.org2012-05-16127-114/+120
| | | | | | | | | | | | | | | | Step2. - Move ui/gfx/gfx_resources.grd to ui/base/native_theme/native_theme_resources.grd -Updated gyp/DEPS/py files to use new target. -Removed old files. I had to keep the gfx_resources.pak as DumpRendererTree depends on it. I'll update DumpRendererTree first and then remove copy of gfx_resources.pak. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10377155 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137527 0039d316-1c4b-4281-b951-d872f2087c98
* Aura/ash split: Don't use X11 window borders.erg@chromium.org2012-05-1610-32/+415
| | | | | | | | | | | | | | This disables window manager borders, and supports dragging of the skyline, as well as resizing from the corners. This patch also moves our ::Atom caching out of RootWindowHostLinux and into its own Singleton. BUG=125106 TEST=none Review URL: https://chromiumcodereview.appspot.com/10381063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137525 0039d316-1c4b-4281-b951-d872f2087c98
* This patch makes ImageSkia more like SkBitmap. The goal is to make swapping ↵pkotwicz@chromium.org2012-05-1610-325/+504
| | | | | | | | | | | | | from SkBitmap to ImageSkia easier. Notable changes: - ImageSkia can be cheaply copied - Added extractSubset, will remove after SkBitmaps have been converted to ImageSkia - Modified API to look more like SkBitmap Review URL: https://chromiumcodereview.appspot.com/10245003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137520 0039d316-1c4b-4281-b951-d872f2087c98
* Decoupling backbuffer allocation suggestion from frontbuffer allocation ↵mmocny@chromium.org2012-05-162-12/+15
| | | | | | | | | | | | | | | suggestion. Frontbuffer drop was hinged onto the discardBackbuffer message. Since only a single discard mess is sent now, and since discarding backbuffer comes first, a message frontbuffer drop was waiting for would never come. This cl just refactors to decouple the two allocations and should be functionally equivalent to current behaviour, except it does not make assumptions about when discard messages should come through. BUG=126542 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/10388010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137432 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Remove unneeded scoped_ptr.h includes from ash, base, media, and ui.thestig@chromium.org2012-05-169-13/+7
| | | | | | | | | | BUG=none TEST=none TBR=ben,brettw,hclam Review URL: https://chromiumcodereview.appspot.com/10391121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137375 0039d316-1c4b-4281-b951-d872f2087c98
* Run APK tests on the android_test trybot.nileshagrawal@chromium.org2012-05-161-1/+2
| | | | | | | | | | | | Test failures are ignored for now. TBR=mark@chromium.org,tsepez@chromium.org BUG=125059 TEST= Review URL: https://chromiumcodereview.appspot.com/10387086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137352 0039d316-1c4b-4281-b951-d872f2087c98
* Show the "cannot proceed" text only when appropriate.palmer@chromium.org2012-05-162-0/+2
| | | | | | | | | | Fix some simple lints while here. BUG=122498 Review URL: https://chromiumcodereview.appspot.com/10381051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137349 0039d316-1c4b-4281-b951-d872f2087c98
* Rewrite RenderText::IndexOfAdjacentGrapheme() in terms of ↵asvitkine@chromium.org2012-05-167-83/+46
| | | | | | | | | | | | | | | | | IsCursorablePosition(). This moves the implementation of IndexOfAdjacentGrapheme() entirely into the base class, removing the need for platform-specific implementations. This rewrite exposed a couple of problems in RenderTextLinux::IsCursorablePosition() that caused some tests to fail. The fixes are also included. Also includes additional test coverage for UTF16 surrogate pairs, which was only caught by a Linux-specific password censorship test. BUG=125664 TEST=Existing unit tests. Review URL: https://chromiumcodereview.appspot.com/10389148 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137320 0039d316-1c4b-4281-b951-d872f2087c98
* Fix blank lines being ignored in JS alerts.asvitkine@chromium.org2012-05-151-1/+3
| | | | | | | | | | | | | | | I goofed when testing my change in http://crrev.com/137029, which had broken this. The issue is that _multiline_ labels with the empty string as the text actually do have a height of 0. (Only non-multiline labels have a height of one line even if their content is the empty string.) This change fixes the issue by not setting the multiline flag for empty lines. BUG=126297 TEST=Try an alert() with \n's in it. Review URL: https://chromiumcodereview.appspot.com/10310176 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137307 0039d316-1c4b-4281-b951-d872f2087c98
* Set vt=VT_DISPATCH when returning a focused child elementtommi@chromium.org2012-05-151-0/+1
| | | | | | | | | BUG=128158 Review URL: https://chromiumcodereview.appspot.com/10310167 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137262 0039d316-1c4b-4281-b951-d872f2087c98
* Tie native surface EGL config to the window depth.sabercrombie@chromium.org2012-05-152-8/+88
| | | | | | | | | | | Without this we can attempt to use an incompatible config/context. BUG=chromium-os:27980 TEST=Works on Tegra and Mesa softpipe (formerly not working). Review URL: https://chromiumcodereview.appspot.com/10391081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137257 0039d316-1c4b-4281-b951-d872f2087c98
* Move ui/gfx/resources to ui/base/native_theme/resourcesoshima@chromium.org2012-05-15114-0/+0
| | | | | | | | | | | Stage 1. Copy files to new directory so that try job can test next CL (http://codereview.chromium.org/10391145/). BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10384187 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137224 0039d316-1c4b-4281-b951-d872f2087c98
* Change the way _EXPORT macros look, app_list editionthakis@chromium.org2012-05-151-0/+4
| | | | | | | | | | | | I missed this in https://chromiumcodereview.appspot.com/10386108/ . Thanks to tfarina for noticing. BUG=90078 TEST=none TBR=ben Review URL: https://chromiumcodereview.appspot.com/10377151 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137221 0039d316-1c4b-4281-b951-d872f2087c98
* Remove some more OS_CHROMEOS from browser.beng@google.com2012-05-151-5/+4
| | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10377114 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137200 0039d316-1c4b-4281-b951-d872f2087c98
* Support 'Paste and Go' action in omnibox Aura.mukai@chromium.org2012-05-152-1/+23
| | | | | | | | | | BUG=123057 TEST=manually done Review URL: https://chromiumcodereview.appspot.com/10386085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137181 0039d316-1c4b-4281-b951-d872f2087c98