- 26 Aug, 2011 40 commits
-
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98447 0039d316-1c4b-4281-b951-d872f2087c98
-
reed@google.com authored
Review URL: http://codereview.chromium.org/7745045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98446 0039d316-1c4b-4281-b951-d872f2087c98
-
tturchetto@google.com authored
BUG= TEST=this is a test Review URL: http://codereview.chromium.org/7748032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98444 0039d316-1c4b-4281-b951-d872f2087c98
-
sievers@chromium.org authored
and destruction on a thread other than the one where the original reference was created. The problem with the current implementation is modifying the flag pointer from WeakPtr::~WeakPtr which might happen on a different thread (potentially racing with somebody invalidating the flag on the original thread). For compatibility reasons, creating the initial reference attaches to the thread and governs the thread-safety checking logic with respect to checking a reference to be valid and invalidating it, which should both only be done on the same thread. BUG=82509 TEST=added unit tests Added memleak suppression: http://crbug.com/94345 TBR=timurrrr@chromium.org Review URL: http://codereview.chromium.org/7677028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98443 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
Instead of IDS_BOOMARK it should be IDS_BOOKMARK, notice the missing 'K'. BUG=None TEST=None R=sky@chromium.org Review URL: http://codereview.chromium.org/7744055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98442 0039d316-1c4b-4281-b951-d872f2087c98
-
backer@chromium.org authored
We can't rely on having a compositor for set-up and tear-down of cross process texture transport. This CL creates a shared offscreen context appropriate for that. It further separates TextureGL objects from CompositorGL objects. In particular - I've plumbed through the size of the surface backing the Compositor to the Texture - I've allows the TextureGL to release it's GL resources using the shared context It's necessary to make the vendor of the offscreen context a LeakySingletonTrait singleton so that we don't race with destruction of GL bindings on process shutdown. BUG=fixes dereferencing NULL pointers in RWHVVTouch when images come from GPU process TEST=3D CSS on TOUCH_UI, views_desktop on Windows Review URL: http://codereview.chromium.org/7552039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98441 0039d316-1c4b-4281-b951-d872f2087c98
-
timurrrr@chromium.org authored
TBR=bruening BUG=http://code.google.com/p/drmemory/issues/detail?id=567, 466 Review URL: http://codereview.chromium.org/7758005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98440 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=76788, 64339, 92361, 92363, 92366 TEST=none yet Review URL: http://codereview.chromium.org/7745048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98439 0039d316-1c4b-4281-b951-d872f2087c98
-
mmoss@chromium.org authored
TEST=Fix Mac official build staging step. Review URL: http://codereview.chromium.org/7753039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98437 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98436 0039d316-1c4b-4281-b951-d872f2087c98
-
jshin@chromium.org authored
The former is blocked until we have translation back for them. For ChromeOS R14, we'll not have them ready. The former is blocked until we have fonts for them to use on CrOS. This change will be reverted once two issues above are resolved. See http://codereview.chromium.org/7725002/ for the ICU part that removed the CrOS-specific ICU data file. BUG=chromium-os:19465 TEST=The UI language list does not include the above 5 languages on CrOS. Review URL: http://codereview.chromium.org/7726003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98435 0039d316-1c4b-4281-b951-d872f2087c98
-
backer@chromium.org authored
BUG=none TEST=Verified basic functionality using views_examples. Review URL: http://codereview.chromium.org/7669028 Patch from Daniel Nicoara <dnicoara@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98434 0039d316-1c4b-4281-b951-d872f2087c98
-
leandrogracia@chromium.org authored
Hiding the Speech Input bubble when clicking Microphone Settings for consistency with other platforms. BUG=80730 TEST=none Review URL: http://codereview.chromium.org/7741043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98433 0039d316-1c4b-4281-b951-d872f2087c98
-
michaelbai@google.com authored
BUG= TEST= Review URL: http://codereview.chromium.org/7701014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98432 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Review URL: http://codereview.chromium.org/7753021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98431 0039d316-1c4b-4281-b951-d872f2087c98
-
mkwst@chromium.org authored
Opens up the `BrowsingDataRemover::Remove()` functionality to extensions: initial implementation, so it's sitting behind the experimental flag to work out kinks in the API/code. BUG=83530,54853 TEST=browser_tests Review URL: http://codereview.chromium.org/7551008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98429 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
TopLevelPostReissueFromChromeFramePage tests as these tests rely on resource dlls being present in the locales folder. After revision 98103 it looks like chrome uses resource packs internally. We need to fix ChromeFrame to not use resource dlls and use the packs instead. BUG=94362 Review URL: http://codereview.chromium.org/7740045 TBR=ananta@chromium.org Review URL: http://codereview.chromium.org/7745050 TBR=battre@chromium.org Review URL: http://codereview.chromium.org/7753037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98428 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
We were using .dlls, but the .pak files are smaller and this will allow us to share more code across platforms. - Remove app/locales.gyp (used on win to generate the locale dlls) and references to it in other gyp(i) files. - Update various packaging scripts. - Move functions from resource_bundle_posix.cc to resource_bundle.cc (LoadResourcesDataPak, UnloadLocaleResources, GetLocalizedString, LoadLocaleResources) and delete the corresponding functions from resource_bundle_win.cc. Fixes from previous patch: - Made dependencies of packed_resources explicit (MSVS can't figure it out from the inputs). - Removed a couple cases where we were looking for dlls on Windows (in l10n_util.cc and l10n_util_unittest.cc). BUG=92724 TBR=cpu Review URL: http://codereview.chromium.org/7714028 TBR=tony@chromium.org Review URL: http://codereview.chromium.org/7744053 TBR=battre@chromium.org Review URL: http://codereview.chromium.org/7759001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98427 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
We were using .dlls, but the .pak files are smaller and this will allow us to share more code across platforms. - Remove app/locales.gyp (used on win to generate the locale dlls) and references to it in other gyp(i) files. - Update various packaging scripts. - Move functions from resource_bundle_posix.cc to resource_bundle.cc (LoadResourcesDataPak, UnloadLocaleResources, GetLocalizedString, LoadLocaleResources) and delete the corresponding functions from resource_bundle_win.cc. Fixes from previous patch: - Made dependencies of packed_resources explicit (MSVS can't figure it out from the inputs). - Removed a couple cases where we were looking for dlls on Windows (in l10n_util.cc and l10n_util_unittest.cc). BUG=92724 TBR=cpu Review URL: http://codereview.chromium.org/7714028 TBR=tony@chromium.org Review URL: http://codereview.chromium.org/7744053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98426 0039d316-1c4b-4281-b951-d872f2087c98
-
nsylvain@google.com authored
The webkit roll 93846:93861 made chrome-data regress by 0.5% in 32bit. Review URL: http://codereview.chromium.org/7753036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98425 0039d316-1c4b-4281-b951-d872f2087c98
-
battre@chromium.org authored
tests as these tests rely on resource dlls being present in the locales folder. After revision 98103 it looks like chrome uses resource packs internally. We need to fix ChromeFrame to not use resource dlls and use the packs instead. BUG=94362 Review URL: http://codereview.chromium.org/7740045 TBR=ananta@chromium.org Review URL: http://codereview.chromium.org/7745050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98424 0039d316-1c4b-4281-b951-d872f2087c98
-
maruel@chromium.org authored
Causes segfault in clang when linking in release. TBR=thakis@chromium.org BUG= TEST= NOTRY=true Review URL: http://codereview.chromium.org/7753033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98423 0039d316-1c4b-4281-b951-d872f2087c98
-
oleg@chromium.org authored
BUG=chromium-os:17471 TEST="Translate to English" context menu items is shown on the usual pages, but not shown in FileBrowser or chrome://settings. Review URL: http://codereview.chromium.org/7745021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98420 0039d316-1c4b-4281-b951-d872f2087c98
-
mirandac@chromium.org authored
BUG=90909 TEST=launch organic browser with empty fresh profile; no message about a bad profile seen before search engine dialog. Review URL: http://codereview.chromium.org/7717025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98418 0039d316-1c4b-4281-b951-d872f2087c98
-
dilmah@chromium.org authored
BUG=None TEST=None Review URL: http://codereview.chromium.org/7741018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98417 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
Also pass --disable-threads and --disable-pthreads to configure, for goma. Also modify the script to try to download prebuilt binaries first. This is faster, and makes sure the bots use the exact same binary as goma. The binaries are downloaded from http://commondatastorage.googleapis.com/chromium-browser-clang/index.html Also add a script that packages a clang build up into a tgz for uploading with gsutil, based on code by ukai@. Finally, if the svn checkout fails, remove the destination directory and try again (for bots that have a checkout from before we had an internal llvm svn mirror). BUG=none TEST=none Review URL: http://codereview.chromium.org/7741039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98416 0039d316-1c4b-4281-b951-d872f2087c98
-
serya@chromium.org authored
BUG=chromium-os:19257 TEST=None Review URL: http://codereview.chromium.org/7741021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98415 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98414 0039d316-1c4b-4281-b951-d872f2087c98
-
podivilov@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98413 0039d316-1c4b-4281-b951-d872f2087c98
-
dgozman@chromium.org authored
BUG=chromium-os:19510 TEST=See bug. Review URL: http://codereview.chromium.org/7711025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98412 0039d316-1c4b-4281-b951-d872f2087c98
-
pastarmovj@chromium.org authored
If this is not done downloads go to crazy places like the chrome install dir or god knows where else. BUG=90722 TEST=Set the policy to empty string and observe downloads going to the default location instead. Review URL: http://codereview.chromium.org/7583005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98411 0039d316-1c4b-4281-b951-d872f2087c98
-
ivankr@chromium.org authored
BUG=chromium-os:19007 TEST=manual Review URL: http://codereview.chromium.org/7715033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98408 0039d316-1c4b-4281-b951-d872f2087c98
-
nkostylev@chromium.org authored
Serve OEM eula from correct URL. BUG=chromium-os:19587 TEST=Manual. Loaded WebUI EULA with OEM content. Review URL: http://codereview.chromium.org/7753006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98407 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98406 0039d316-1c4b-4281-b951-d872f2087c98
-
zork@chromium.org authored
R=derat@chromium.org BUG=chromium-os:12402 TEST=None Review URL: http://codereview.chromium.org/7747015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98404 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Print Preview: Provide a link to try printing with the system dialog when print preview fails. Also fix an initiator tab closed case that is being misreported as a failure. BUG=92599 TEST=none Review URL: http://codereview.chromium.org/7715022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98400 0039d316-1c4b-4281-b951-d872f2087c98
-
nkostylev@chromium.org authored
When resuming mobile network goes through these states: Idle-Failure-Association-Configuration-Connected-Online state. Idle-Failure should not generate any error notifications as network is not in connecting state yet because modem has not resumed yet. Only network failures happening when network is in active state (like associatuion, configuration etc.) should be shown. BUG=chromium-os:18749 TEST=Manual. No error notification for mobile network when resuming. Review URL: http://codereview.chromium.org/7740022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98399 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
tests as these tests rely on resource dlls being present in the locales folder. After revision 98103 it looks like chrome uses resource packs internally. We need to fix ChromeFrame to not use resource dlls and use the packs instead. BUG=94362 TBR=grt Review URL: http://codereview.chromium.org/7740045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98398 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
BUG=none TEST=TBD Review URL: http://codereview.chromium.org/7747009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98397 0039d316-1c4b-4281-b951-d872f2087c98
-
mkwst@chromium.org authored
Adds a `privacy` permission to hold toggles for features that a) send information to external services (google or otherwise), b) send information to first-party websites, and c) effect Chrome's handling of the network in general. (Metrics are still a TODO). * privacy * network * networkPredictionEnabled (ChromeSetting) * services * alternateErrorPagesEnabled (ChromeSetting) * autofillEnabled (ChromeSetting) * instantEnabled (ChromeSetting) * safeBrowsingEnabled (ChromeSetting) * searchSuggestEnabled (ChromeSetting) * translateEnabled (ChromeSetting) * websites * blockThirdPartyCookies (ChromeSetting) * hyperlinkAuditingEnabled (ChromeSetting) * referrersEnabled (ChromeSetting) BUG=88030,55059,54853 TEST=browser_tests Review URL: http://codereview.chromium.org/7298005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98396 0039d316-1c4b-4281-b951-d872f2087c98
-