| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=player_x11
Review URL: http://codereview.chromium.org/2803019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50555 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=chromium-os:1830
TEST=ClockMenuButtonBrowserTest, manual
Review URL: http://codereview.chromium.org/2851020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50554 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=47230
TEST=test passes
TBR=robertshield
Review URL: http://codereview.chromium.org/2844016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50553 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
The performance regression is fixed in r61629.
TBR=tkent
TEST=Tree stays gree
BUG=none
Review URL: http://codereview.chromium.org/2823024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50552 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Allow JingleClient to be closed more than once and before it is initalized.
If JingleClient is disconnected from the talk network due to reaons like
invalid credentials, user of JingleClient will attempt to close the client
again resulting a crash in libjingle. Instead of failing aggressive we allow
the close operation to be more flexible and handle the invalid cases internally.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/2819017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50551 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Added NOTIFICATION_SERVER notification method (use
--sync-notification-method=server to turn on).
BUG=34647
TEST=manually
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=50479
Review URL: http://codereview.chromium.org/2827014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50550 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
some encoding issues.
Switched some uses of UTF-8 encoded std::strings to UTF-16 encoded string16 -- this avoids the confusion on which strings are unicode, since these std::string were getting passed around and later assumed to be ASCII.
BUG=46608, 47234
Review URL: http://codereview.chromium.org/2827018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50549 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=40752
TEST=make sure the bookmark bubble is now right aligned (or left
aligned for rtl locales).
Review URL: http://codereview.chromium.org/2872012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50545 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
omnibox.
BUG=44736
TEST=see bug
Review URL: http://codereview.chromium.org/2809030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50544 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
- Introduce a new Canvas2 interface. This will become the way that everyone talks to Canvas. It is populated primarily with the cross-platform methods from Canvas.
- Make Canvas implement this interface.
- Hook it up to the Windows RootView.
Review URL: http://codereview.chromium.org/2866010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50543 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=34647
TEST=made sure http://codereview.chromium.org/2827014/show compiles.
Review URL: http://codereview.chromium.org/2813027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50542 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50541 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
This change allows MergePreference to handle Value::TYPE_NULL values for either the local preference or the sever value. The old way of merging into the server parameter could no longer work since if the server value was null, the return would still need to be a list or dict. So the new API is to return the merged value and now all parameters are const.
BUG=46719
TEST=unit
Review URL: http://codereview.chromium.org/2821015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50539 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=32410
TEST=start two browsers with --enable-sync-passwords, verify that passwords do get synced between the two
Review URL: http://codereview.chromium.org/2302001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50538 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In testing, cases were discovered where fread would read until EOF, but
lzma_code would not be able to decompress that entire block in one call
because not enough space was available in the output buffer. Calling lzma_code
with LZMA_FINISH followed by LZMA_RUN is incorrect. Once LZMA_FINISH is used
once, subsequent calls to lzma_code must also use LZMA_FINISH.
From <lzma/base.h>:
* After the first use of LZMA_SYNC_FLUSH, LZMA_FULL_FLUSH, or LZMA_FINISH,
* the same `action' must is used until lzma_code() returns LZMA_STREAM_END.
* Also, the amount of input (that is, strm->avail_in) must not be modified
* by the application until lzma_code() returns LZMA_STREAM_END. Changing the
* `action' or modifying the amount of input will make lzma_code() return
* LZMA_PROG_ERROR.
This bug caused goobspatch to exit prematurely with a message like
goobspatch: xzread(extra, 216): 11
11 is LZMA_PROG_ERROR.
BUG=47199
TEST=none
Review URL: http://codereview.chromium.org/2875008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50537 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
included.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2800024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50536 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Amit's change in r50386 loads chrome.dll to lower
startup time. This causes a corresponding increase in
read_byte_b on xpdual/moz (and other perf tests). This
means total_byte_b goes up, which caused the step to
turn red. Adjusting expectations for this measure will
cause xpdual moz to go green again.
BUG=44129
TEST=xpdual moz is green
TBR=nsylvain@chromium.org
Review URL: http://codereview.chromium.org/2815022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50535 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=47230
TEST=none
TBR=scherkus,avi,willchan
Review URL: http://codereview.chromium.org/2800023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50534 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
RepostFormWarningTest.TestLoginAfterRepost as flaky on Windows.
BUG=47228
TEST=none
TBR=avi,willchan
Review URL: http://codereview.chromium.org/2848019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50532 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=47199
TEST=none
Review URL: http://codereview.chromium.org/2801016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50531 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The error (C2712) is caused by using __try in function
that requires object unwinding. To fix this, move the
code that requires SEH to another function.
R=cpu
CC=maruel
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2841022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50530 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
mousemove if the event is the result of a grab.
BUG=45734
TEST=none
Review URL: http://codereview.chromium.org/2841018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50529 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Sigh.
BUG=none
TEST=about:ipc on Mac and see the dialog
Review URL: http://codereview.chromium.org/2869017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50528 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=47199
TEST=none
Review URL: http://codereview.chromium.org/2805024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50527 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
of sharing resources.
BUG=47205
Review URL: http://codereview.chromium.org/2844015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50526 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
manifest.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50523 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
TBR=aa
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/2831021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50520 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/2853011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50519 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=FileMetaDataParserTest.*
Review URL: http://codereview.chromium.org/2814022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50518 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
since the left nav changed.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2842006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50517 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
This saves a considerable amount of code. It also removes the call to CryptAcquireContext without CRYPT_VERIFYCONTEXT which is not recommended if passing a NULL container. (We were only computing a hash, so CRYPT_VERIFYCONTEXT was sufficient.)
R=wtc
BUG=none
TEST=PasswordStoreWinTest.ConvertIE7Login
Review URL: http://codereview.chromium.org/2875002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50516 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
it.
BUG=45750
TEST=see bug
Review URL: http://codereview.chromium.org/2800022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50515 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
OS X:
Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party.
BUG=47199
TEST=none
Review URL: http://codereview.chromium.org/2846025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50514 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=FirstRunTest.*
Review URL: http://codereview.chromium.org/2862024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50513 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
right wrench menu in Toolbar.xib.
TEST=none
BUG=45764
Review URL: http://codereview.chromium.org/2813025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50512 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
we may yet try them again shortly.
BUG=46852
TEST=none
Review URL: http://codereview.chromium.org/2833026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50511 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
watch perf bots carefully.
BUG=46672
TEST=see perf bits
Review URL: http://codereview.chromium.org/2876001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50510 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
This only picks up some minor stylistic changes, and should not have any other impact.
BUG=NONE
Review URL: http://codereview.chromium.org/2876004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50509 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
manifest.
This allows panels and window container types to specify initial dimensions when launching.
BUG=46501
TEST=add app.launch.width/height to an app manifest with container==panel/window
Review URL: http://codereview.chromium.org/2814016
TBR=scherkus@chromium.org
Review URL: http://codereview.chromium.org/2823023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50505 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
BUG=47207
TEST=none
TBR=avi,willchan
Review URL: http://codereview.chromium.org/2854016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50503 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Currently disables use of PepperView, and HostConnection->Connect(). This is mainly an attempt to get the build working. Will re-enable functionality later.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2857011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50502 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
first before attempting
to get a texture id to make sure that the id's stay consistent.
Review URL: http://codereview.chromium.org/2846021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50501 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=all tests should still pass, especially nacl_ui_tests
Review URL: http://codereview.chromium.org/2814006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50500 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
DEPTH, STENCIL
attachments have been resized since FBOs don't work if the attachment texture sizes don't match.
BUG=47185
Review URL: http://codereview.chromium.org/2872010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50499 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Don't enter "keyword" mode unless the extension is enabled and allowed in
incognito.
- Show extension suggest results for incognito windows.
BUG=46933
Review URL: http://codereview.chromium.org/2810020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50498 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=none
TEST=Breakpad code builds on gcc 4.5.
Review URL: http://codereview.chromium.org/2806021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50497 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
from a PAC script.
This mini-cache is more aggressive in caching negative resolutions, to avoid performance problems with PAC scripts that do lots of serial DNS resolves.
This is necessary now that we no longer globally cache DNS resolve failures to avoid performance regressions.
BUG=46821
Review URL: http://codereview.chromium.org/2833021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50495 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50493 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
| |
Review URL: http://codereview.chromium.org/2873007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50491 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Move RenderWidgetHost::SetDocumentLoaded calls from TabContents to RenderViewHost so that renderer acessibility is requested on render views that don't have a TabContents delegate.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2853009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50490 0039d316-1c4b-4281-b951-d872f2087c98
|