- 09 Dec, 2011 25 commits
-
-
sergeyu@chromium.org authored
BUG=106543 Review URL: http://codereview.chromium.org/8872050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113729 0039d316-1c4b-4281-b951-d872f2087c98
-
miket@chromium.org authored
BUG=106902 TEST=none (just docs) Review URL: http://codereview.chromium.org/8883031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113728 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
BUG=106934 TBR=dtseng@chromium.org Review URL: http://codereview.chromium.org/8873046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113727 0039d316-1c4b-4281-b951-d872f2087c98
-
kkania@chromium.org authored
BUG=93571 TEST=none Review URL: http://codereview.chromium.org/8806030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113726 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@chromium.org authored
TBR=cbentzel Review URL: http://codereview.chromium.org/8890058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113725 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
This replaces all calls to GetSurfaceNamed with GetImageNamed if the image is theme dependent, or with calls to ResourceBundle if the image can be shared across Profiles. BUG=106060 TEST=none Review URL: http://codereview.chromium.org/8866002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113724 0039d316-1c4b-4281-b951-d872f2087c98
-
bsy@google.com authored
This CL adds virtual function in reverse interface needed to support Native Client side debuggging only support for sending standard output and standard error output (write syscall buffer contents) through the reverse channel to the renderer to be transformed into PostMessage data. We do not use message channels because PPAPI currently does not support message channels; instead messages are prefixed by a fixed string which a debug-use-only event listener should match (and invoke stopPropagation on). BUG= http://code.google.com/p/nativeclient/issues/detail?id=2474 TEST= nacl-side CL, see http://codereview.chromium.org/8825007 Review URL: http://codereview.chromium.org/8826005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113723 0039d316-1c4b-4281-b951-d872f2087c98
-
ajwong@chromium.org authored
This modification to the scopers implements the "moveable but not copyable" semantics that were introduced in C++11's unique_ptr<>. With this, is now possible to use scopers as an argument type or a return type. This signifies, in the type system, transfer of ownership into a function or out of a function respectively. Calling, or returning such a function MUST use the temporary resulting from the scoper's Pass() function. You CANNOT just pass the scoper by copy as there is still no copy constructor or assignment operator; trying to do so will yield a compilation error. This distinction makes it possible to avoid the implicit ownership transfer issues of auto_ptr, but still allow us to have compiler enforced ownership transfer. Also adds a Passed() helper that allows using a scoper with Bind(). BUG=96118 TEST=new unittests Review URL: http://codereview.chromium.org/8774032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113722 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=none TEST=none R=csilv Review URL: http://codereview.chromium.org/8831001 TBR=jhawkins@chromium.org Review URL: http://codereview.chromium.org/8889036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113719 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@google.com authored
(This only affects GPU bots). Tested locally on Linux debug. BUG= TEST=GPU bots Review URL: http://codereview.chromium.org/8890056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113718 0039d316-1c4b-4281-b951-d872f2087c98
-
sail@chromium.org authored
If the avatar bubble closed while opening a profile we would crash. Here's the sequence of events: AvatarMenuBubbleGtk::OpenProfile ->SwitchToProfile(); ... AvatarMenuBubbleGtk::OnDestroy() delete this; this->bubble_->Close(); <--- crash here because this is deleted To prevent these kinds of errors I changed the OnDestory() code to use MessageLoop::DeleteSoon(). This ensures that there no AvatarMenuBubbleGtk functions are in the backtrace when the bubble is deleted. BUG=106640 TEST=Reprorduced the crash. Applied my patch and verified that it no longer crashed. Review URL: http://codereview.chromium.org/8889027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113717 0039d316-1c4b-4281-b951-d872f2087c98
-
kkania@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8888026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113716 0039d316-1c4b-4281-b951-d872f2087c98
-
wtc@chromium.org authored
If NSS is not initialized, conceptually the SSL session cache is empty. So it doesn't make sense to initialize NSS just to clear an empty SSL session cache. Remove the suppression for the leak this CL fixes from suppressions_mac.txt. Widen a related suppression in suppressions.txt to cover this leak. R=mattm@chromium.org,cbentzel@chromium.org BUG=105431,95718 TEST=valgrind bots should not report a leak in SSL_ClearSessionCache. Review URL: http://codereview.chromium.org/8849005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113715 0039d316-1c4b-4281-b951-d872f2087c98
-
dcheng@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8889023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113714 0039d316-1c4b-4281-b951-d872f2087c98
-
dcheng@chromium.org authored
base/task.h is going away and being replaced by base/bind.h and base/callback.h. This CL was automatically generated by sed. BUG=none TEST=none Review URL: http://codereview.chromium.org/8879031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113713 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@google.com authored
(This only affetcs GPU bots) BUG= TEST=GPU win bots green Review URL: http://codereview.chromium.org/8888035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113712 0039d316-1c4b-4281-b951-d872f2087c98
-
miket@chromium.org authored
I investigated deriving from IOThreadExtensionFunction, but we need access to Profile in the midst of our work. Deriving from UIThreadExtensionFunction appears to be the right way to do that. It's possible that we'll want to address performance issues caused by jumping back and forth between threads, but for now this seems to work well enough. See http://code.google.com/p/chromium/issues/detail?id=106802 for future plans to deal with lifetime more elegantly. Also reapply http://codereview.chromium.org/8819029/, which is what led to this bug/fix. BUG=106656 TEST=no new ones; just refactoring. Review URL: http://codereview.chromium.org/8857004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113710 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
Aura uses views textfield and needs to set focusable on omnibox instead of location bar. I used "views::Widget::IsPureViews" instead of ifdef because this allow us to provide a flag to enable views textfield on widnows. BUG=106632 TEST=BrowserFocusTest pass Review URL: http://codereview.chromium.org/8832002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113709 0039d316-1c4b-4281-b951-d872f2087c98
-
jsbell@chromium.org authored
BUG=106883 TEST= Review URL: http://codereview.chromium.org/8879034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113708 0039d316-1c4b-4281-b951-d872f2087c98
-
achuith@chromium.org authored
BUG=chromium-os:21845 TEST=wrench menu 'Lock screen' should have 'screen' in lower case, consistent with rest of wrench menu options. Review URL: http://codereview.chromium.org/8873014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113707 0039d316-1c4b-4281-b951-d872f2087c98
-
asvitkine@chromium.org authored
Refactors some common Skia drawing code into RenderText internal class SkiaTextRenderer. Rewrite RenderTextLinux::DrawVisualText() to use SkiaTextRenderer and refactor RenderTextWin::DrawVisualText() to also use SkiaTextRenderer, to re-use code. BUG=103648 TEST=Run Linux views_examples_exe --use-pure-views. In the textfield example tab, the text field should draw its text correctly. Review URL: http://codereview.chromium.org/8725002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113706 0039d316-1c4b-4281-b951-d872f2087c98
-
dtseng@chromium.org authored
With the new logic in SendPendingAccessibilityNotifications, it is no longer necessary to fire a load complete as the first notification to the browser. Since we walk the parent chain, looking for the first entry actually in our browser cache, we will always end up walking up to the root. This change therefore also makes sure that notifications fired on the root will include all of the subtree when composing the notification. BUG=none. TEST=manual. Merge remote-tracking branch 'origin' into build_break Merge branch 'trunk' of http://git.chromium.org/git/chromium into build_break Attempt fixes at chrome frame tests redness. TBR=dtseng Review URL: http://codereview.chromium.org/8869006 TBR=dtseng@chromium.org Review URL: http://codereview.chromium.org/8888034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113705 0039d316-1c4b-4281-b951-d872f2087c98
-
dtseng@chromium.org authored
With the new logic in SendPendingAccessibilityNotifications, it is no longer necessary to fire a load complete as the first notification to the browser. Since we walk the parent chain, looking for the first entry actually in our browser cache, we will always end up walking up to the root. This change therefore also makes sure that notifications fired on the root will include all of the subtree when composing the notification. BUG=none. TEST=manual. Merge remote-tracking branch 'origin' into build_break Merge branch 'trunk' of http://git.chromium.org/git/chromium into build_break Attempt fixes at chrome frame tests redness. TBR=dtseng Review URL: http://codereview.chromium.org/8869006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113704 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
It seems to be passing. BUG=91729 Review URL: http://codereview.chromium.org/8873024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113703 0039d316-1c4b-4281-b951-d872f2087c98
-
dtseng@chromium.org authored
With the new logic in SendPendingAccessibilityNotifications, it is no longer necessary to fire a load complete as the first notification to the browser. Since we walk the parent chain, looking for the first entry actually in our browser cache, we will always end up walking up to the root. This change therefore also makes sure that notifications fired on the root will include all of the subtree when composing the notification. BUG=none. TEST=manual. Merge remote-tracking branch 'origin' into build_break Merge branch 'trunk' of http://git.chromium.org/git/chromium into build_break Attempt fixes at chrome frame tests redness. TBR=dtseng Review URL: http://codereview.chromium.org/8869006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113702 0039d316-1c4b-4281-b951-d872f2087c98
-
- 08 Dec, 2011 15 commits
-
-
dgozman@chromium.org authored
BUG=chromium-os:23809 TEST=SelectFileDialogExtensionBrowserTest.* Review URL: http://codereview.chromium.org/8819025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113701 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@google.com authored
Also switch how cross-origin URL is generated so we can enable NaCl URLLoader tests. BUG=NONE TEST=ui_tests --gtest_filter=PPAPITest.URLLoader*, PPAPINaClTest.URLLoader* Review URL: http://codereview.chromium.org/8886001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113700 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=none TEST=none R=csilv Review URL: http://codereview.chromium.org/8831001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113699 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
BUG=79722 TEST=none Review URL: http://codereview.chromium.org/8885016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113698 0039d316-1c4b-4281-b951-d872f2087c98
-
dcheng@chromium.org authored
base/task.h is going away and being replaced by base/bind.h and base/callback.h. This CL was automatically generated by sed. BUG=none TEST=none Review URL: http://codereview.chromium.org/8885020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113697 0039d316-1c4b-4281-b951-d872f2087c98
-
dpranke@chromium.org authored
Also fixes a few straggling missing dependencies. R=darin@chromium.org BUG=98755 TEST=waterfall stays green Review URL: http://codereview.chromium.org/8819004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113696 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113692 0039d316-1c4b-4281-b951-d872f2087c98
-
jennb@chromium.org authored
* Cleanup test-only includes. * Move some logic from panels into panel strip. * Split DragPanels test into three tests. * SetExpansionState on panel to move in/out of overflow. * Added API to panel/native_panel to control whether app icon is visible. BUG=106227 TEST=Panel*Test.* Review URL: http://codereview.chromium.org/8827011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113691 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
This pulls in the following Native Client changes: r7363: (sehr) Expose LLVM changes to get __builtin_nacl_target_arch intrinsic. r7364: (pdox) Build GLibC's crt1 as bitcode. r7365: (mseaborn) Scons: Remove the unused argument 'nocpp' r7366: (pdox) Get rid of upload to "latest" directory for PNaCl toolchain builders. r7367: (pdox) Merge with LLVM up to r145883. Merge was trivial except for conflicts caused by adjacent code changes. r7368: (eugenis) Move ncval usage text to its own variable. r7369: (eugenis) Change -fasan to -faddress-sanitizer. Add a sanity test. r7370: (eugenis) Switch ASan bots to opt-host. r7371: (eugenis) Disable x86_64 hello_world_test on the Mac/ASan bot. r7372: (eugenis) Really disable x86_64 hello_world_test on the Mac/ASan bot. r7373: (robertm) Augmented pnacl-as to handle .S files, so we can remove .s/.S support from pnacl-clang. r7374: (mseaborn) x86-64 Windows: Make stack unwinding test stricter still r7375: (mseaborn) Revert r7374: x86-64 Windows: Make stack unwinding test stricter still r7376: (ncbray) Stop using ppapi_ppb_core inside of PyAuto. r7377: (dschuff) Script to parse LLVM testsuite report output and list of known failures, r7378: (dschuff) Script and gclient DEPS to sync and run llvm testsuite with pnacl/sel_ldr r7379: (sehr) Add --pnacl-default-command-line flag to the driver. This flag controls r7380: (mseaborn) Scons: Use booleans in CommandTest() arguments where possible r7381: (mseaborn) Convert some crash tests to using command_tester.py's --declares_exit_status r7382: (robertm) Assimilate the names "between_builders" files between regular and trybots. r7383: (sehr) Add a DescWrapper factory method for random number generation. r7384: (dschuff) Buildbot script for running LLVM test-suite and torture tests, r7385: (sehr) Update to get default command line toolchain for sandboxed translators. r7387: (robertm) Modify ARM .S code so it can be processed by both gnu-as and llvm-mc. r7388: (dschuff) Fix bootstrap loading for toolchain torture tests BUG=none TEST=nacl_integration Review URL: http://codereview.chromium.org/8879027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113690 0039d316-1c4b-4281-b951-d872f2087c98
-
jrg@google.com authored
BUG=None TEST= Review URL: http://codereview.chromium.org/8890046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113689 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@google.com authored
Move GpuInfoUpdate to UI thread to avoid potential racing. BUG=104768 TEST=ExtensionWebstorePrivateBundleTest.GetWebGLStatus Review URL: http://codereview.chromium.org/8772031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113688 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
BUG=79722 TEST=none Review URL: http://codereview.chromium.org/8890027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113687 0039d316-1c4b-4281-b951-d872f2087c98
-
fsamuel@chromium.org authored
renderer. This patch is the chromium side change associated with this patch: https://bugs.webkit.org/show_bug.cgi?id=70556 BUG=none TEST=manually Review URL: http://codereview.chromium.org/8888005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113686 0039d316-1c4b-4281-b951-d872f2087c98
-
cbentzel@chromium.org authored
BUG=106912 TBR=jar@chromium.org Review URL: http://codereview.chromium.org/8872042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113685 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@chromium.org authored
BUG=NONE TEST=ui_tests, --gtest_filter=PPAPITest.Fullscreen Review URL: http://codereview.chromium.org/8789005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113684 0039d316-1c4b-4281-b951-d872f2087c98
-