- 01 Dec, 2012 40 commits
-
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170662 0039d316-1c4b-4281-b951-d872f2087c98
-
benwells@chromium.org authored
Keep browser process alive while there are platform apps with background pages running. This does not happen on Android or ChromeOS builds: Android does not support browser process keep alive, and ChromeOS does not need or like it. This change prevents platform apps getting killed unceremoniously while they have background pages active. This also delays the process being shutdown after closing the last platform app window, as background pages are kept alive for 15 seconds after their last activity is completed. This change re-lands r165772 which caused problems on Google branded ChromeOS. This version does not add keep alives for ChromeOS and was tested on the ChromeOS try bots. TBR=davemoore@chromium.org for the ash launcher test change. BUG=155457 TEST=Make sure platform apps can be used from the launcher without chrome windows open; make sure Chrome shuts down properly in all cases. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=165772 Review URL: https://chromiumcodereview.appspot.com/11117011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170660 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Revert 170658. r170654 had moved these tests to interactive_ui_tests, which is needed for notification tests on aura. > Revert r170623 "Convert HTML5 notification pyauto tests to browser_tests." > > TBR=chrisgao@chromium.org > BUG=none > TEST=none > NOTRY=true > > > Review URL: https://chromiumcodereview.appspot.com/11434073 TBR=oshima@chromium.org Review URL: https://codereview.chromium.org/11316295 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170659 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
TBR=chrisgao@chromium.org BUG=none TEST=none NOTRY=true Review URL: https://chromiumcodereview.appspot.com/11434073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170658 0039d316-1c4b-4281-b951-d872f2087c98
-
hongbo.min@intel.com authored
BUG=None Review URL: https://chromiumcodereview.appspot.com/11415249 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170657 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
The EventDispatcher dispatches all events to EventHandler::OnEvent. The default implementation routes various events to more appropriate handlers (e.g. OnKeyEvent for KeyEvent etc.) BUG=163606 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=170641 Review URL: https://codereview.chromium.org/11299285 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170656 0039d316-1c4b-4281-b951-d872f2087c98
-
reveman@chromium.org authored
Makes it possible to specify the number of worker threads used to rasterize content. BUG=154637 TEST=manual TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/11421171 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170655 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Move new desktop notification tests to interactive_ui_tests because they fail on win_aura. These were just added in r170623 Like the other notification tests that were moved to interactive_ui_tests, these tests require the user to be logged in which is the case for interactive_ui_tests. BUG=163196, 154081 TBR=scottmg Review URL: https://codereview.chromium.org/11308309 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170654 0039d316-1c4b-4281-b951-d872f2087c98
-
jbauman@chromium.org authored
It seems to be working now that the drivers have been updated. BUG=163229 Review URL: https://chromiumcodereview.appspot.com/11412263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170652 0039d316-1c4b-4281-b951-d872f2087c98
-
nona@chromium.org authored
Most of connection management stuff is moved to chromeos/dbus/ibus/ibus_config_client This CL depends https://codereview.chromium.org/11413165/ BUG=158265 TEST=Manually done on lumpy Review URL: https://chromiumcodereview.appspot.com/11419202 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170651 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome://settings/displaymukai@chromium.org authored
Following minor fixes are included: - handling mouse up event outside of the area - the display text is not selectable by -webkit-user-select - hide 'Make primary' button rather than disabling it - fix the position of white pointing arrow - changes the space between "mirroring" and "make primary" button - fix the position of display name text so that it won't change when the display gets the focus - remove 'dirty' flag. rather checks if the drop position is exactly same as the original position or not. - changes the background mirroring display rectangle from dash to solid, also changes the margin between displays in mirroring to 2. BUG=163546 TEST=make sure by operating in chrome://settings/display on an actual device. Review URL: https://chromiumcodereview.appspot.com/11414276 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170650 0039d316-1c4b-4281-b951-d872f2087c98
-
sgurun@chromium.org authored
BUG=158341 Review URL: https://chromiumcodereview.appspot.com/11308274 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170649 0039d316-1c4b-4281-b951-d872f2087c98
-
ilevy@chromium.org authored
- Remove some unnecessary calls. Builder now only compiles and uploads. Tester now only runs standard tests. TBR=yfriedman@chromium.org BUG=160952 NOTRY=True Review URL: https://chromiumcodereview.appspot.com/11412292 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170648 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
> events: Dispatch all events through EventHandler::OnEvent from the dispatcher. > > The EventDispatcher dispatches all events to EventHandler::OnEvent. The default > implementation routes various events to more appropriate handlers (e.g. OnKeyEvent > for KeyEvent etc.) > > BUG=163606 > > Review URL: https://codereview.chromium.org/11299285 TBR=sadrul@chromium.org Review URL: https://codereview.chromium.org/11414283 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170647 0039d316-1c4b-4281-b951-d872f2087c98
-
joth@chromium.org authored
This avoids races, and is no more overhead than the other many long-lived browser threads that are kept about BUG=158112 TEST=ran "chrome --single-process" on linux, open & close tabs. Review URL: https://chromiumcodereview.appspot.com/11314014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170644 0039d316-1c4b-4281-b951-d872f2087c98
-
simonjam@chromium.org authored
http://build.chromium.org/f/chromium/perf/chromium-rel-win7-dual/dom_perf/report.html?history=550&rev=170452 -> rebaseline, noisy http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=170399 -> rebaseline, noisy http://build.chromium.org/f/chromium/perf/linux-release-lowmem/dom_perf/report.html?history=250&rev=170467 -> rebaseline, noisy BUG=None TBR=cmp Review URL: https://codereview.chromium.org/11418278 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170643 0039d316-1c4b-4281-b951-d872f2087c98
-
hartmanng@chromium.org authored
BUG=162926 Review URL: https://chromiumcodereview.appspot.com/11413199 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170642 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
The EventDispatcher dispatches all events to EventHandler::OnEvent. The default implementation routes various events to more appropriate handlers (e.g. OnKeyEvent for KeyEvent etc.) BUG=163606 Review URL: https://codereview.chromium.org/11299285 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170641 0039d316-1c4b-4281-b951-d872f2087c98
-
akalin@chromium.org authored
This is a speculative fix for the startup regression introduced by 169875. Also fix a bug in GtkThemeService where use_gtk_ wasn't being set to false if a custom theme was installed before the ThemeService was created. BUG=163706 TBR=estade@chromium.org Review URL: https://chromiumcodereview.appspot.com/11421191 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170640 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170636 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@google.com authored
BUG= TEST=tree TBR=tasak Review URL: https://codereview.chromium.org/11316288 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170634 0039d316-1c4b-4281-b951-d872f2087c98
-
shess@chromium.org authored
BUG=161286 Review URL: https://chromiumcodereview.appspot.com/11419260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170633 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
Use WS_POPUP for ash_unittests - Layout test windows starting from (1,1) and move mouse to (0,0) so that they don't overlap unless test moves the cursor. - Enabled disabled tests. - RootWindowHostWin::SetBounds should move the window and call OnHostResized when the scale factor has changed. This also seems to fix the desktop size limitation issue (148691) probably because a popup window can be larger than the desktop size. TBR=oshima@chromium.org BUG=150986, 157817, 141577, 148691 TEST=none Review URL: https://codereview.chromium.org/11419271 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170632 0039d316-1c4b-4281-b951-d872f2087c98
-
ilevy@chromium.org authored
- Also add suppost for asan=1 gyp define, which implicitly sets clang=1. R=yfriedman@chromium.org BUG=160952 NOTRY=True Review URL: https://chromiumcodereview.appspot.com/11308286 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170631 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170629 0039d316-1c4b-4281-b951-d872f2087c98
-
ilevy@chromium.org authored
NOTRY=True Review URL: https://chromiumcodereview.appspot.com/11434066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170627 0039d316-1c4b-4281-b951-d872f2087c98
-
sail@chromium.org authored
BUG=162905 Review URL: https://chromiumcodereview.appspot.com/11348274 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170626 0039d316-1c4b-4281-b951-d872f2087c98
-
scheib@chromium.org authored
BUG=148532 Review URL: https://chromiumcodereview.appspot.com/11413131 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170625 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
- ui::GetOutputDeviceData() will return false if name is empty but it could be empty in case of internal display - Now the display name is cached as a field of DisplayInfo struct, so the data could be empty. BUG=163658 TEST=See chrome://settings/display on device Review URL: https://chromiumcodereview.appspot.com/11411291 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170624 0039d316-1c4b-4281-b951-d872f2087c98
-
chrisgao@chromium.org authored
BUG=none Review URL: https://chromiumcodereview.appspot.com/11359174 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170623 0039d316-1c4b-4281-b951-d872f2087c98
-
finnur@chromium.org authored
BUG=27702 TEST=See test plan for Commands API. Review URL: https://chromiumcodereview.appspot.com/11411298 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170622 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
- Layout test windows starting from (1,1) and move mouse to (0,0) so that they don't overlap unless test moves the cursor. - Enabled disabled tests. - RootWindowHostWin::SetBounds should move the window and call OnHostResized when the scale factor has changed. This also seems to fix the desktop size limitation issue (148691) probably because a popup window can be larger than the desktop size. BUG=150986,157817,141577,148691 TEST=none Review URL: https://chromiumcodereview.appspot.com/11428066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170621 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170620 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
BUG=163733 TBR=pkasting@chromium.org, caitkp@chromium.org Review URL: https://codereview.chromium.org/11416304 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170619 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@google.com authored
Review URL: https://codereview.chromium.org/11308299 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170618 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
BUG=31663 TBR=scottmg Review URL: https://codereview.chromium.org/11308304 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170617 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
BUG=163728 TBR=robertshield@chromium.org Review URL: https://codereview.chromium.org/11411303 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170616 0039d316-1c4b-4281-b951-d872f2087c98
-
akalin@chromium.org authored
We still need to figure out how to keep track of already-processed delete directives, but leave that as a TODO. BUG=141245 Review URL: https://chromiumcodereview.appspot.com/11299218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170615 0039d316-1c4b-4281-b951-d872f2087c98
-
egraether@chromium.org authored
This change switches the compositor to the new WebLayerTreeViewClient::createFontAtlas() API. LayerTreeHost now manages whether a font atlas needs to be loaded. commit order: https://bugs.webkit.org/show_bug.cgi?id=102958 https://codereview.chromium.org/11413123 https://bugs.webkit.org/show_bug.cgi?id=102960 BUG= Review URL: https://chromiumcodereview.appspot.com/11413123 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170614 0039d316-1c4b-4281-b951-d872f2087c98
-
krenaud@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170613 0039d316-1c4b-4281-b951-d872f2087c98
-