summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Test data for verifying signatures in downloads.bryner@chromium.org2011-11-102-0/+2
| | | | | | | | BUG=102540 TEST=none Review URL: http://codereview.chromium.org/8507033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109345 0039d316-1c4b-4281-b951-d872f2087c98
* Roll gyp 1085:1088thakis@chromium.org2011-11-101-1/+1
| | | | | | | | | | | | | | 1086: Add more verbose debugging log info 1087: Ninja: separate dependencies for compile steps vs actions/rules/copies -> more parallelism 1088: Add a test for defines with parentheses. Teach ninja to handle this case. BUG=103569 TEST=none TBR=mark Review URL: http://codereview.chromium.org/8511040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109344 0039d316-1c4b-4281-b951-d872f2087c98
* Aura: Widgets obey transparency flag, default to opaquejamescook@chromium.org2011-11-103-2/+5
| | | | | | | | | | | NativeWidgetAura now respects the Widget::InitParams flag for transparency with respect to setting its layer opaque. This means that Aura widgets are now opaque by default, including the main Chrome browser window. BUG=none TEST=none Review URL: http://codereview.chromium.org/8510023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109343 0039d316-1c4b-4281-b951-d872f2087c98
* Return the topmost native widget for NativeWidgetAura::GetTopLevelNativeWidgetstevenjb@google.com2011-11-102-10/+9
| | | | | | | | | BUG=103637 TEST=Only affects Aura builds. Test status area menus (when added), notifications, tooltips, and general UI windows / features. Review URL: http://codereview.chromium.org/8508030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109342 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 109337 - base::Bind cleanup in SimpleDatabaseSystemmichaeln@google.com2011-11-102-54/+40
| | | | | | | | | Review URL: http://codereview.chromium.org/8497053 TBR=michaeln@google.com Review URL: http://codereview.chromium.org/8497057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109341 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Implement ExtensionView::CreateWidgetHostView().derat@chromium.org2011-11-101-17/+12
| | | | | | | | | | | | The NOTIMPLEMENTED() here was resulting in a crash in some cases (e.g. when trying to show a file browser dialog). BUG=103292 TEST=manual: tried to save a file and checked that we don't crash (a dialog gets opened, but it's empty, presumably because there's more that needs to get implemented in that area) Review URL: http://codereview.chromium.org/8493028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109339 0039d316-1c4b-4281-b951-d872f2087c98
* base::Bind cleanup in SimpleDatabaseSystemmichaeln@google.com2011-11-102-40/+54
| | | | | | Review URL: http://codereview.chromium.org/8497053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109337 0039d316-1c4b-4281-b951-d872f2087c98
* Super minor cleanup, remove a couple of includes that aren't needed.michaeln@google.com2011-11-101-2/+1
| | | | | | Review URL: http://codereview.chromium.org/7864015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109336 0039d316-1c4b-4281-b951-d872f2087c98
* Make the Pepper Flash net address just private, not Flash-specific.viettrungluu@chromium.org2011-11-1051-462/+421
| | | | | | | | | | | Note that, though the PP_Flash_NetAddress struct is being renamed, binary compatibility is being maintained. It's also safe to just rename the PPB_Flash_NetAddress interface without maintaining backwards compatibility since Pepper Flash isn't using it yet. Review URL: http://codereview.chromium.org/8511032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109335 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 109328 - Add tests to make sure gpu blacklist actually block gpu ↵zmo@google.com2011-11-096-263/+0
| | | | | | | | | | | | | | | features. The general idea is to use jbates's newly added tracing: if a feature is blacklisted, we check the tracing data to make sure gpu process hasn't launched. BUG=101222 TEST=browser_tests Review URL: http://codereview.chromium.org/8497034 TBR=zmo@google.com Review URL: http://codereview.chromium.org/8510030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109334 0039d316-1c4b-4281-b951-d872f2087c98
* Fix build.thakis@chromium.org2011-11-091-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=binji Review URL: http://codereview.chromium.org/8511035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109331 0039d316-1c4b-4281-b951-d872f2087c98
* Fix PPAPI generator so that it might actually report exceptions properly.viettrungluu@chromium.org2011-11-091-1/+1
| | | | | | Review URL: http://codereview.chromium.org/8511022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109330 0039d316-1c4b-4281-b951-d872f2087c98
* uint32_t -> uint32 in content/browser/plugin_loader_posix.* and include ↵viettrungluu@chromium.org2011-11-093-6/+7
| | | | | | | | | | | basictypes.h. The header file currently doesn't compile on Windows (unless a definition for uint32_t is picked up from elsewhere, coincidentally). Review URL: http://codereview.chromium.org/8511034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109329 0039d316-1c4b-4281-b951-d872f2087c98
* Add tests to make sure gpu blacklist actually block gpu features.zmo@google.com2011-11-096-0/+263
| | | | | | | | | | The general idea is to use jbates's newly added tracing: if a feature is blacklisted, we check the tracing data to make sure gpu process hasn't launched. BUG=101222 TEST=browser_tests Review URL: http://codereview.chromium.org/8497034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109328 0039d316-1c4b-4281-b951-d872f2087c98
* Turn on -Wexit-time-destructors for net.thakis@chromium.org2011-11-091-0/+5
| | | | | | | | | BUG=101600 TEST=none Review URL: http://codereview.chromium.org/8497052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109327 0039d316-1c4b-4281-b951-d872f2087c98
* Media files for the defer audio video test.shishir@chromium.org2011-11-092-0/+0
| | | | | | | | | BUG=98690 TEST=None Review URL: http://codereview.chromium.org/8505038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109326 0039d316-1c4b-4281-b951-d872f2087c98
* Fix aura_chromeos builder.flackr@chromium.org2011-11-091-1/+1
| | | | | | | | | | | screen_locker_webui.cc was renamed to webui_screen_locker.cc in 109300, this updates the aura chromeos exclude. BUG=None TEST=None Review URL: http://codereview.chromium.org/8508033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109324 0039d316-1c4b-4281-b951-d872f2087c98
* Create a new aura client API dir and move constants and desktop delegate to it.ben@chromium.org2011-11-0935-97/+94
| | | | | | | | | | Rename DesktopDelegate to StackingClient. BUG=none TEST=none Review URL: http://codereview.chromium.org/8508020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109323 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2011-11-091-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109322 0039d316-1c4b-4281-b951-d872f2087c98
* Updating ChromeOS plugin data file with new Flapper version.rohitbm@chromium.org2011-11-091-1/+1
| | | | | | Review URL: http://codereview.chromium.org/8510028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109321 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 99674:99737.ojan@chromium.org2011-11-091-1/+1
| | | | | | | | | | TBR=yutak@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/8506025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109320 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 109316 - Revert 109254 - Change WebGL conformance tests from UI tests ↵zmo@google.com2011-11-092-70/+55
| | | | | | | | | | | | | | | | | | | | to InProcessBrowserTests. InProcessBrowserTest is enough for our purpose. This change is to get ready to use a GPU BrowserTest framework where we could have more specific test expectations (like per RENDERER), and InProcessBrowserTest seems like the way to go. Also, we simplify the test mechanism on how to report back results: from three states to a simple message. BUG=none TEST=gpu bots: gpu_tests Review URL: http://codereview.chromium.org/8477048 TBR=zmo@google.com Review URL: http://codereview.chromium.org/8506030 TBR=zmo@google.com Review URL: http://codereview.chromium.org/8497051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109318 0039d316-1c4b-4281-b951-d872f2087c98
* net: Remove 3 exit time destructors and 3 static initializers.thakis@chromium.org2011-11-094-29/+45
| | | | | | | | | BUG=101600,94925 TEST=none Review URL: http://codereview.chromium.org/8467037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109317 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 109254 - Change WebGL conformance tests from UI tests to ↵zmo@google.com2011-11-092-55/+70
| | | | | | | | | | | | | | | | | InProcessBrowserTests. InProcessBrowserTest is enough for our purpose. This change is to get ready to use a GPU BrowserTest framework where we could have more specific test expectations (like per RENDERER), and InProcessBrowserTest seems like the way to go. Also, we simplify the test mechanism on how to report back results: from three states to a simple message. BUG=none TEST=gpu bots: gpu_tests Review URL: http://codereview.chromium.org/8477048 TBR=zmo@google.com Review URL: http://codereview.chromium.org/8506030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109316 0039d316-1c4b-4281-b951-d872f2087c98
* Enable -Wexit-time-destructors for base.thakis@chromium.org2011-11-093-1/+4
| | | | | | | | | BUG=101600 TEST=none Review URL: http://codereview.chromium.org/8507017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109314 0039d316-1c4b-4281-b951-d872f2087c98
* Fix linux_chromeos_clang build.flackr@chromium.org2011-11-096-6/+6
| | | | | | | | | | | Init was being inherited from two classes causing an error on clang compile. Init from ScreenLockerDelegate renamed to LockScreen so as not to conflict with Init from WebUILoginView. BUG=None TEST=None Review URL: http://codereview.chromium.org/8510026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109311 0039d316-1c4b-4281-b951-d872f2087c98
* Make it possible to include another file and port print_preview unit test to ↵scr@chromium.org2011-11-096-83/+285
| | | | | | | | | | | | | | | | | | | | | | | | unit_tests. Print Preview unit_tests were good to tackle because it brought in a dependency on the need to include another js file. This also hilighted another need - that of being able to include non-generative js files in gyp and have them copied to the test_data dir, while doing both generation and copy for gtest files. I changed the "extension" of files which generate C++ with gtest-like syntax to .gtestjs and added a copyjs rule to the chrome_tests.gypi. FWIW, I believe this is mostly needed for unit_tests and only applied it there, although I would be amenable to also making this change for the webui tests to make it clear that they are not plain js files. R=dpapad@chromium.org BUG=101443,102222 TEST=unit_tests --gtest_filter=PrintPreviewUtilsUnitTest.* Review URL: http://codereview.chromium.org/8438063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109310 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the remaining exit time destructors from base for linux and chromeos.thakis@chromium.org2011-11-092-16/+10
| | | | | | | | | BUG=101600 TEST=none Review URL: http://codereview.chromium.org/8507022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109309 0039d316-1c4b-4281-b951-d872f2087c98
* Remove unused function from nacl fullscreen test.polina@google.com2011-11-091-10/+0
| | | | | | | | | | | | | Committing for robertm: http://codereview.chromium.org/8495030/ Description Remove unused function. The pnacl toolchain -- which uses clang complains about this. Not sure why our clang bot does not BUG= http://code.google.com/p/nativeclient/issues/detail?id=2425 Review URL: http://codereview.chromium.org/8498031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109308 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 912laforge@chromium.org2011-11-09203-4519/+13841
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109307 0039d316-1c4b-4281-b951-d872f2087c98
* Add /third_party/webdriver/python/selenium to .gitignore.fischman@chromium.org2011-11-091-0/+1
| | | | | | | | | | TBR=kkania@chromium.org BUG=none TEST=git status no longer reports untracked dir Review URL: http://codereview.chromium.org/8505035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109304 0039d316-1c4b-4281-b951-d872f2087c98
* Use WebUI login screen to authenticate on WebUI lock screen.flackr@chromium.org2011-11-0923-683/+438
| | | | | | | | | | | | This CL uses the existing WebUI login screen to let the user authenticate for the WebUI lock screen. In a future CL changes will be made to the WebUI login screen in the case where a user is logged in (screen is locked) to match the new lock screen UI mockups. BUG=100718 TEST=Enable WebUI lock screen in chrome://flags, lock the screen and authenticate with login page to test. Review URL: http://codereview.chromium.org/8403004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109300 0039d316-1c4b-4281-b951-d872f2087c98
* net: Move the last two Escape() functions into the net namespace.tfarina@chromium.org2011-11-0920-71/+77
| | | | | | | | | | | BUG=64263 TEST=None R=willchan@chromium.org Review URL: http://codereview.chromium.org/8507011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109298 0039d316-1c4b-4281-b951-d872f2087c98
* Obey --wait-for-debugger in the render process.cbentzel@chromium.org2011-11-091-2/+6
| | | | | | | | | BUG=101541 Review URL: http://codereview.chromium.org/8341028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109297 0039d316-1c4b-4281-b951-d872f2087c98
* Split NetworkChangeNotifierChromeos shutdown.satorux@chromium.org2011-11-093-11/+24
| | | | | | | | | | | | | | | | | | | | | The previous attempt crrev.com/109120 was reverted, as it crashed BrowserMainTest (sorry about that!). This patch contains a fix for the issue. Explicitly shutdown the network change notifier before DBusThreadManager's shutdown. Like crrev.com/108564, the motivation is to solve a dependency issue between NetworkChangeNotifierChromeos and DBusThreadManager, that'll replace CrosLibrary (i.e. NetworkChangeNotifierChromeos will be using DBusThreadManager internally once sque's change is checked in). BUG=chromium-os:22459 TEST=networking on Chrome OS works as before. out/Release/unit_tests --gtest_filter=BrowserMainTest.* Review URL: http://codereview.chromium.org/8501037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109295 0039d316-1c4b-4281-b951-d872f2087c98
* Slightly widen a tsan suppression.thakis@chromium.org2011-11-091-2/+0
| | | | | | | | | | BUG=93932 TEST=none TBR=acolwell Review URL: http://codereview.chromium.org/8511021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109294 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed a bug where themes with non-ASCII image file names would not load.mpcomplete@chromium.org2011-11-093-2/+46
| | | | | | | | | | | | Fixed the same issue with plugin paths. BUG=102625 TEST=no Review URL: http://codereview.chromium.org/8502043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109293 0039d316-1c4b-4281-b951-d872f2087c98
* Fix logic for detection of config change during UMA loggingrsimha@chromium.org2011-11-091-10/+10
| | | | | | | | | | | | While doing UMA logging for sync, there is logic in place to detect if a config has changed before actually logging it. This patch fixes the edge case when we must detect that a datatype has been re-enabled after originally being disabled. BUG=96507 TEST=Enable a custom set of sync datatypes, then enable a datatype that was originally disabled and check about:histograms Review URL: http://codereview.chromium.org/8503030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109291 0039d316-1c4b-4281-b951-d872f2087c98
* net: remove public key pins for Twitter.agl@chromium.org2011-11-092-4/+7
| | | | | | | | | BUG=103594 TEST=Check that twitter.com has no records in about:net-internals Review URL: http://codereview.chromium.org/8496033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109290 0039d316-1c4b-4281-b951-d872f2087c98
* Doc update for per-user external source.skerner@chromium.org2011-11-092-10/+16
| | | | | | | | | | | | A copy of the changed page is here: http://www.corp.google.com/~skerner//crbug/88975/docs/external_extensions.html BUG=88975 TEST=Doc change only. Review URL: http://codereview.chromium.org/8467030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109289 0039d316-1c4b-4281-b951-d872f2087c98
* Updated expectations.rtenneti@chromium.org2011-11-091-3/+3
| | | | | | | | | | | | | | | | | | | for V8 regression, adjusted rev's. xp-release-dual-core/moz: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=-1&graph=vm_peak_r Adjusted expectations for performance improvements from skia roll. xp-release-dual-core/moz: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=109265&graph=total_byte_r xp-release-dual-core/moz: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=109265&graph=total_op_r BUG=103586,103454 TBR=cmp Review URL: http://codereview.chromium.org/8508022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109288 0039d316-1c4b-4281-b951-d872f2087c98
* Fix typo - change DISABLE_CreateInactiveSwitchToActive to ↵prasadt@chromium.org2011-11-091-2/+4
| | | | | | | | | | | DISABLED_CreateInactiveSwitchToActive. BUG=None TEST=None Review URL: http://codereview.chromium.org/8510022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109287 0039d316-1c4b-4281-b951-d872f2087c98
* PrintPreview: [LINUX] While flipping the orientation, do not rotate the ↵kmadhusu@chromium.org2011-11-093-26/+12
| | | | | | | | | | | | margins values. BUG=103465 TEST=Please refer to bug report. Review URL: http://codereview.chromium.org/8505024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109286 0039d316-1c4b-4281-b951-d872f2087c98
* Add a tray notification UI for speech input recording in the extension API.leandrogracia@chromium.org2011-11-0920-274/+487
| | | | | | | | | BUG=97388 TEST=existing apitests + status icon unittests Review URL: http://codereview.chromium.org/8386074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109285 0039d316-1c4b-4281-b951-d872f2087c98
* zip: Introduce zip_internal.h and zip_internal.cc.satorux@chromium.org2011-11-094-96/+144
| | | | | | | | | | | | | Move some utility functions and constants to the new files. These files will be used from ZipFileReader, that'll be added as zip_reader.{h,cc} in an upcoming patch. BUG=chromium-os:22351 TEST=out/Release/unit_tests --gtest_filter=ZipTest.* Review URL: http://codereview.chromium.org/8372055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109284 0039d316-1c4b-4281-b951-d872f2087c98
* Support --trace-startup and task tracingjoth@chromium.org2011-11-0912-56/+219
| | | | | | | | | | | | | passing --trace-startup puts the tracing system into record mode immediately saving the result to chrometrace.log or a file specified by --trace-startup-file BUG=None TEST=start chrome with --trace-startup, wait 5 secs, see chrometrace.log in current dir. open it in chrome://tracing/ Review URL: http://codereview.chromium.org/7887013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109281 0039d316-1c4b-4281-b951-d872f2087c98
* Update layout when selection is updated.oshima@chromium.org2011-11-096-69/+29
| | | | | | | | | | BUG=103452 TEST=none Review URL: http://codereview.chromium.org/8502032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109279 0039d316-1c4b-4281-b951-d872f2087c98
* Aura: Resize cursors show properly when hovering over window framejamescook@chromium.org2011-11-0942-132/+236
| | | | | | | | | | | | | + Set the cursor in the desktop's event filter. + Add the ui::EF_IS_NON_CLIENT flag to mouse events when needed, so views doesn't override the cursor. + Move views/window/hit_test.h to ui/base/hit_test.h and remove the extra copy in ui/aura. BUG=103298 TEST=move cursor over desktop, window edges, window client area Review URL: http://codereview.chromium.org/8501018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109278 0039d316-1c4b-4281-b951-d872f2087c98
* Updated expectations.rtenneti@chromium.org2011-11-091-3/+3
| | | | | | | | | | | | | | | | | | | for V8 regression, adjusted rev's. xp-release-dual-core/moz: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=-1&graph=vm_peak_r Adjusted expectations for performance improvements from skia roll. xp-release-dual-core/moz: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=109265&graph=total_byte_r xp-release-dual-core/moz: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=150&rev=109265&graph=total_op_r BUG=103586,103454 TBR=cmp Review URL: http://codereview.chromium.org/8507014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109277 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed capitalization that broke jscompile.jamiewalch@google.com2011-11-091-1/+1
| | | | | | | | | BUG=None TEST=jscompile runs without errors. Review URL: http://codereview.chromium.org/8497047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109275 0039d316-1c4b-4281-b951-d872f2087c98