- 20 Jun, 2014 40 commits
-
-
asvitkine@chromium.org authored
Current value is at 50k, which is actually the average log size on a lot of platforms. Increase it to 100k for a more reasonable default that should cover the majority of cases where logs are discarded due to this size limit according to UMA data. BUG=380282 Review URL: https://codereview.chromium.org/313613003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278612 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278611 0039d316-1c4b-4281-b951-d872f2087c98
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia/+log/30e6e2af14e84216b1c113fd7500d0822bc81daa..9efd66b8451f25465abd1027e09a3bcfa7b9c554 CQ_EXTRA_TRYBOTS=tryserver.chromium:linux_layout_rel TBR=reed@google.com BUG= android_aosp failure unrelated NOTRY=True Review URL: https://codereview.chromium.org/338893005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278610 0039d316-1c4b-4281-b951-d872f2087c98
-
penghuang@chromium.org authored
BUG=https://code.google.com/p/nativeclient/issues/detail?id=3881 Review URL: https://codereview.chromium.org/345733007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278609 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
These components are needed by chrome/common. This also adds a "components" meta-target to avoid listing all components in the root build file. TBR=blundell Review URL: https://codereview.chromium.org/344993002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278608 0039d316-1c4b-4281-b951-d872f2087c98
-
cbentzel@chromium.org authored
This tool has not been maintained or used in a while, and tools such as UMDH work well as a replacement. BUG=383024 Review URL: https://codereview.chromium.org/314253003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278607 0039d316-1c4b-4281-b951-d872f2087c98
-
mlerman@chromium.org authored
BUG=357693 Review URL: https://codereview.chromium.org/345733006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278606 0039d316-1c4b-4281-b951-d872f2087c98
-
shess@chromium.org authored
Instead of storing full copies of every backing file's path, re-generate the paths as needed. BUG=none Review URL: https://codereview.chromium.org/340893003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278605 0039d316-1c4b-4281-b951-d872f2087c98
-
danakj@chromium.org authored
When a layer adds a tiling, it syncs to its pending/active twin and adds the tiling there. We "cleverly" do an UpdateTilePriorities() then immediately if possible. But now UpdateTilePriorities() does much more than it used to, and also adds new tilings etc, which can cause a sync back to the other twin and re-entrancy and bad things. Instead, split everything that isn't updating tiles priorities off to UpdateTiles() which calls UpdateTilePriorities(), and have UpdateDrawProperties() call that instead. This way syncing only updates priorities, and doesn't do things like adding new tilings or changing what is considered high res. R=enne BUG=386076 Review URL: https://codereview.chromium.org/343653004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278604 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
BUG=239879 Review URL: https://codereview.chromium.org/345493003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278603 0039d316-1c4b-4281-b951-d872f2087c98
-
bungeman@chromium.org authored
The current code is causing issues on the "Chromium Win Clang" builder, and also contains redundancies and unneeded repacements for existing function. BUG=82385 Review URL: https://codereview.chromium.org/343433008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278602 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
Now extension_icon_image and image_loader are safe to be used outside of Chrome, like AppShell/Athena. BUG=159265, 380421 R=yoz@chromium.org, jamescook@chromium.org TBR=sky@chromium.org, fmalita@chromium.org TEST=unit_tests, compile succeeds Review URL: https://codereview.chromium.org/334053003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278601 0039d316-1c4b-4281-b951-d872f2087c98
-
cpu@chromium.org authored
It crashes while warming up the sandbox, deep inside QueryInterface BUG=385781 TEST=see bug Review URL: https://codereview.chromium.org/342903002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278600 0039d316-1c4b-4281-b951-d872f2087c98
-
guohui@chromium.org authored
BUG=375416 Review URL: https://codereview.chromium.org/345533005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278599 0039d316-1c4b-4281-b951-d872f2087c98
-
djkurtz@chromium.org authored
Chrome will already link to EGL/GLES if/when it needs to. We need not explicitly set these libraries via link settings. This works around the fact that the chromeos arm-generic board does not currently use EGL/GLES. It uses GLX and OpenGL as provided by mesa's xlib-glx. In order to satisfy these hard coded -lEGL -lGLES linker settings, arm-generic was forced to build a dummy EGL/GLES implementation. Without these link settings, we can remove the dummy opengles. BUG=chromium:330163 TEST=build chrome on arm-generic and peach_pi using simple chrome TEST=emerge chromeos-chrome on arm-generic and peach_pi in cros chroot TEST=For peach_pi: build video_encode_accelerator_unittest, scp to device and run TEST=For peach_pi: build video_decode_accelerator_unittest, scp to device and run Review URL: https://codereview.chromium.org/335393005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278598 0039d316-1c4b-4281-b951-d872f2087c98
-
pavely@chromium.org authored
The problem: Sync observes Invalidator state to decide whenever to use PreCommit GU optimization, therefore INVALIDATIONS_ENABLED should be reported only when it is certain that communication channel between client and invalidations server works both ways. SyncNetworkChannel::NotifyStateChange is currently used for two purposes: - Notify observers of invalidations about InvalidatorState - Nudge cacheinvalidations to send heartbeat on network status change. Because of this dual purpose it is called with INVALIDATIONS_ENABLED when network status changes. In this case sync is notified that invalidations are enabled while there is no GCM connection established. Solution: - Separate two purposes into separate functions and call them appropriately - Only set INVALIDATIONS_ENABLED when it is confirmed that both http and gcm channels are working. BUG=377911 R=rlarocque@chromium.org,zea@chromium.org Review URL: https://codereview.chromium.org/348503002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278597 0039d316-1c4b-4281-b951-d872f2087c98
-
bengr@chromium.org authored
The removes a check on initialization, because the key may be set after initialization but before use. BUG=382977 Review URL: https://codereview.chromium.org/347803003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278596 0039d316-1c4b-4281-b951-d872f2087c98
-
armansito@chromium.org authored
This patch adds BluetoothGattConnectionChromeOS and implements BluetoothDeviceChromeOS::CreateGattConnection. At this point, creating a connection simply calls org.bluez.Device1.Connect without pairing. BluetoothGattConnectionChromeOS::Disconnect currently doesn't do anything, at least until there is a system in bluetoothd for managing GATT connections properly between Chrome and its profiles and plugins. BUG=384620,381305 TEST=device_unittests Review URL: https://codereview.chromium.org/333983003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278595 0039d316-1c4b-4281-b951-d872f2087c98
-
stevenjb@chromium.org authored
With this change we rely on Service.Visible and only use Manager.Services to determine which services to observe. BUG=384380 R=pneubeck@chromium.org Review URL: https://codereview.chromium.org/330833003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278594 0039d316-1c4b-4281-b951-d872f2087c98
-
juyik@chromium.org authored
As an intermediate step to disambiguate notifications at notification UI manager level, we rename notification_id() to delegate_id() to clarify that it is not an id for notification in message center. Also change assignment operator of message center's notification to protected. Other members are still used by notification list so they need to be public. BUG=297867 Review URL: https://codereview.chromium.org/344763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278593 0039d316-1c4b-4281-b951-d872f2087c98
-
hirono@chromium.org authored
BUG=384944 TEST=manually R=yoshiki@chromium.org Review URL: https://codereview.chromium.org/345853004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278592 0039d316-1c4b-4281-b951-d872f2087c98
-
xiyuan@chromium.org authored
There is also a page transition animation to wait for after timer is fired. BUG=385167 Review URL: https://codereview.chromium.org/344793005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278591 0039d316-1c4b-4281-b951-d872f2087c98
-
rdsmith@chromium.org authored
This will allow experimentation to occur in M37 without concern about blowing out memory. A more thorough memory limit re-evaluation is expected in M38. BUG=374917 R=cbentzel@chromium.org Review URL: https://codereview.chromium.org/342523002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278590 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
gfx::ImageKia will fetch the ImageSkiaRep based on resource scale factor (supported one) and scale accordingly. BUG=381601 TEST=covered by test. R=ananta@chromium.org, pkotwicz@chromium.org, rsesek@chromium.org Review URL: https://codereview.chromium.org/340613004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278589 0039d316-1c4b-4281-b951-d872f2087c98
-
calamity@chromium.org authored
This CL adds a DummySearchBoxView to the experimental app list which forwards its input to the AppListMainView search box in a similar way to the NTP's fakebox. BUG=349727 Review URL: https://codereview.chromium.org/335343002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278588 0039d316-1c4b-4281-b951-d872f2087c98
-
rdsmith@chromium.org authored
BUG=385744 R=jar@chromium.org Review URL: https://codereview.chromium.org/341553005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278587 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This adds more of the chrome/common target. The sources don't all compile yet so this is commented out. Add many resources targets required my chrome/common. R=thestig@chromium.org TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/348663003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278586 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
TBR=bruening@chromium.org BUG=NONE Review URL: https://codereview.chromium.org/333153004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278571 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278568 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
On HiDPI windows these coordinates are in DIPs. While posting them via the PostMessage API we need to convert them back to pixel using the correct scale factor. This caused bookmarks to get incorrectly saved at times. Changes in this patch are as below:- 1. menu_controller.cc. Convert screen_loc to pixels before invoking Win32 API's as they expect values in pixels. 2. screen_win.cc. Fix the GetWindowAtScreenPoint function to convert the point to pixels before invoking the WindowFromPoint API. BUG=381605 R=sky Review URL: https://codereview.chromium.org/341763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278559 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
This changes HistoryURLProviderParams from holding an ACMatches object to holding a HistoryMatches object; the HistoryMatches will no longer be fixed up in DoAutocomplete(), but rather after it returns control to the UI thread. The majority of this change is mechanical, but some nontrivial changes have to be made to DoAutocomplete() to account for how the "promote" action it could previously take must also happen on the UI thread. Therefore the |params| object also has to gain a few members to allow the post-DoAutocomplete() code to do promotion correctly. BUG=376199 TEST=none R=mpearson@chromium.org Review URL: https://codereview.chromium.org/333273009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278558 0039d316-1c4b-4281-b951-d872f2087c98
-
jbudorick@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/342823004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278557 0039d316-1c4b-4281-b951-d872f2087c98
-
navabi@chromium.org authored
BUG=385379,379219 R=tedchoc@chromium.org Review URL: https://codereview.chromium.org/348673003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278556 0039d316-1c4b-4281-b951-d872f2087c98
-
amineer@chromium.org authored
Reverting on trunk per author's request to eliminate top crasher. > Win Video Capture: Add support for HDYC pixel format. > > This pixel format is a synonym of YUYV and is needed > for at least the DeckLink video capture card. > This format is not specified in Windows headers > probably because this is just a synonym of other > pixel formats, IOW they are all the same except for > the first word, which is the name read in hex > backwards: > 30323449 --> 0x30 0x32 0x34 0x49 -> 024I > 43594448 --> 0x43 0x59 0x44 0x48 -> CYDH > > and then all the YUV (422 and 420 alike) use the same > trailing sequence > ... 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}} > > HDYC: http://www.fourcc.org/yuv.php#HDYC > > BUG=380939 > > Review URL: https://codereview.chromium.org/317073010 TBR=mcasas@chromium.org Review URL: https://codereview.chromium.org/345843002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278555 0039d316-1c4b-4281-b951-d872f2087c98
-
amineer@chromium.org authored
Reverting on trunk at author's request to eliminate crasher > VideoCaptureDevice Win: Enumerate devices' supported formats when they don't have a DevicePath property. > > BUG=380939 > > Review URL: https://codereview.chromium.org/328463002 TBR=mcasas@chromium.org Review URL: https://codereview.chromium.org/340353003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278554 0039d316-1c4b-4281-b951-d872f2087c98
-
amineer@chromium.org authored
Reverting from trunk at author's request to address crash. > Smart Revert 276260 "Win Video Capture: Add support for HDYC pixel for..." > > "Smart" because it needed some rebasing. > > > Win Video Capture: Add support for HDYC pixel format. > > > > This pixel format is a synonym of YUYV and is needed > > for at least the DeckLink video capture card. > > This format is not specified in Windows headers > > probably because this is just a synonym of other > > pixel formats, IOW they are all the same except for > > the first word, which is the name read in hex > > backwards: > > 30323449 --> 0x30 0x32 0x34 0x49 -> 024I > > 43594448 --> 0x43 0x59 0x44 0x48 -> CYDH > > > > and then all the YUV (422 and 420 alike) use the same > > trailing sequence > > ... 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}} > > > > HDYC: http://www.fourcc.org/yuv.php#HDYC > > > > BUG=380939 > > > > Review URL: https://codereview.chromium.org/317073010 > > NOTRY=true > > TBR=mcasas@chromium.org > > Review URL: https://codereview.chromium.org/338853009 TBR=mcasas@chromium.org Review URL: https://codereview.chromium.org/342253002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278553 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
Doing this via HTML for now; back to RST after I/O. R=binji@chromium.org Review URL: https://codereview.chromium.org/342773003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278552 0039d316-1c4b-4281-b951-d872f2087c98
-
byungchul@chromium.org authored
JVM's AttachCurrentThread() resets thread name if the caller doesn't pass thread name. Pass it first time call of AttachCurrentThread(). Not call next times to reduce syscall (prctl) overhead. BUG=384603 Review URL: https://codereview.chromium.org/330823004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278551 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
They were changed in https://chromiumcodereview.appspot.com/11360211, but histograms.xml reflects the old one. BUG=none Review URL: https://codereview.chromium.org/327163003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278550 0039d316-1c4b-4281-b951-d872f2087c98
-
cthomp@chromium.org authored
This change is related to the new plugin page action UI https://codereview.chromium.org/319553008/ BUG=307323 Review URL: https://codereview.chromium.org/300873002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278549 0039d316-1c4b-4281-b951-d872f2087c98
-