- 10 Apr, 2014 40 commits
-
-
treib@chromium.org authored
BUG=350904 Review URL: https://codereview.chromium.org/225393006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263023 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
The ozone message-pump is no longer needed. So remove that, and use the default message-pump based on libevent instead. Also, add a convenience method for adding a watcher on a file-descriptor to the message-pump from the message-loop. BUG=354062 R=rjkroege@chromium.org, sky@chromium.org TBR=darin@chromium.org Review URL: https://codereview.chromium.org/231643005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263022 0039d316-1c4b-4281-b951-d872f2087c98
-
hanxi@chromium.org authored
Fix a bug in the API webview.executeScript. After this fix, if the webview (who calls the executeScript API) is navigated to another source, the executeScript API won't be injected and executed in the new source. BUG=239388 Review URL: https://codereview.chromium.org/226043005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263020 0039d316-1c4b-4281-b951-d872f2087c98
-
rpaquay@chromium.org authored
BUG=343725,343651 Review URL: https://codereview.chromium.org/229463003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263018 0039d316-1c4b-4281-b951-d872f2087c98
-
rsesek@chromium.org authored
This is not used in production yet, since Android kernels do not have seccomp mode two support, yet. BUG=308763, 166704 Review URL: https://codereview.chromium.org/180783019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263017 0039d316-1c4b-4281-b951-d872f2087c98
-
sdefresne@chromium.org authored
Introduce a new bookmarks component and update DEPS for chrome/browser and chrome/chrome_browser.gypi. Move names of bookmark preferences from chrome/common/pref_names.{cc,h} to components/bookmarks/core/common/bookmark_pref_names.{cc,h} and add an include in chrome/common/pref_names.h to limit modification to the client files. BUG=360613 TBR=sky Review URL: https://codereview.chromium.org/228393004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263016 0039d316-1c4b-4281-b951-d872f2087c98
-
skuhne@chromium.org authored
BUG=361412 TEST=unittest Review URL: https://codereview.chromium.org/232133003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263015 0039d316-1c4b-4281-b951-d872f2087c98
-
dominikg@chromium.org authored
If a page requires touch scrolling, we currently report a failure if the browser doesn't support touch. This means that no average numbers will be reported on the dashboard. Instead of failing, we could skip the page and show a warning message to make the user aware of that. BUG=355661 Review URL: https://codereview.chromium.org/230373005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263014 0039d316-1c4b-4281-b951-d872f2087c98
-
earthdok@chromium.org authored
BUG=362138 TBR=sky@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/233313004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263013 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
We'll test this on device to make decision, and evisit options page after that. BUG=361672 TEST=DisplayManager.UIScaleUpgradeToHighDPI Review URL: https://codereview.chromium.org/230683003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263012 0039d316-1c4b-4281-b951-d872f2087c98
-
mkwst@chromium.org authored
When passwords for the current site are added, updated, or removed from the password store, we should add, update, or remove them from the bubble in order to keep things up to date. This patch deals with the common case of removing passwords from the settings page while the password bubble is instantiated on a separate tab. A future patch will deal with adding or removing the site from the blacklist. BUG=330154 R=vabr@chromium.org,markusheintz@chromium.org Review URL: https://codereview.chromium.org/228593002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263011 0039d316-1c4b-4281-b951-d872f2087c98
-
msarda@chromium.org authored
This CL adds the iOS implementation of the ProfileOAuth2TokenService. BUG=NONE Review URL: https://codereview.chromium.org/226643012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263008 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263007 0039d316-1c4b-4281-b951-d872f2087c98
-
eseidel@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=171141:171269&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/227913004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263006 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263004 0039d316-1c4b-4281-b951-d872f2087c98
-
vabr@chromium.org authored
A follow-up to https://codereview.chromium.org/216183008/ Password manager internals page serves as a debugging output from the process of observing submitted password forms and offering the user to save the password. The user will be able to grab the debugging info and pass it onto the Chrome developers to help investigate issues. This CL introduces: 1) RendererSavePasswordProgressLogger, a specialization of the SavePasswordProgressLogger for the renderer part of the password management code. 2) Additional support in the PasswordManagementClient to use the Logger in the renderer code. More context in the design doc: https://docs.google.com/document/d/1ArDhTo0w-8tOPiTwqM1gG6ZGqODo8UTpXlJjjnCNK4s/edit?usp=sharing A follow-up CL will introduce actual logging calls. TBR=inferno@chromium.org BUG=347927 Review URL: https://codereview.chromium.org/228263004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263002 0039d316-1c4b-4281-b951-d872f2087c98
-
tmoniuszko@opera.com authored
fdwCharSet param changed from 0 to DEFAULT_CHARSET (which is defined to 1). ScriptShape fails to generate glyphs on Windows XP for some complex scripts (Hindi text for instance) if font is created with fdwCharSet=0. Other paramaters are unchanged because they still expand to 0. BUG=361994 TEST=On Windows XP, go to Control Panel and Regional and Language Options. Under Languages tab check Install files for Complex Script and right-to-left languages (including Thai) and Install files for East Asian languages. Click Details and install Hindi language. Launch Chromium. Go to advanced settings and go to Languages. Add Hindi language and click Display Chromium in this language button. Restart Chromium. Expected result: Hindi font glyphs should be properly generated for all UI elements (tabs, menus, notification panels). Review URL: https://codereview.chromium.org/230793003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263001 0039d316-1c4b-4281-b951-d872f2087c98
-
gab@chromium.org authored
1) Compute it at most once in the lifetime of the browser (rather than at most once per PrefHashCalculator). 2) Explicitly AllowIO in the scope of this computation. This isn't ideal, but there is no other good way until we can get rid of this legacy artifact in a few milestones. Note that I have to skip a presubmit error for (2): "Banned functions were used. New code should not use ScopedAllowIO." :(. BUG=361687 R=erikwright@chromium.org Review URL: https://codereview.chromium.org/231673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262995 0039d316-1c4b-4281-b951-d872f2087c98
-
alokp@chromium.org authored
Once gpu rasterization is disabled on a layer, it will stay disabled. BUG=329722 Review URL: https://codereview.chromium.org/222903005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262994 0039d316-1c4b-4281-b951-d872f2087c98
-
ygorshenin@chromium.org authored
BUG=357050 TEST=none Review URL: https://codereview.chromium.org/230503003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262993 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262991 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
In both aura/views and mac, notifications are done through the message-center. So the implementations of BalloonCollection are never used. So remove these. Only the GTK version of the implementation remains. BUG=354062, 361784 R=mukai@chromium.org, rsesek@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/231213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262988 0039d316-1c4b-4281-b951-d872f2087c98
-
pdamek@opera.com authored
BUG=361585 Review URL: https://codereview.chromium.org/226183015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262987 0039d316-1c4b-4281-b951-d872f2087c98
-
rmcilroy@chromium.org authored
- The 'compare and swap' operations should enforce memory ordering even when the exchange does not occur. - The exclusive monitor does not need to be cleared by CLREX if a LDRX was not followed by a matching STREX. - Use LDAR and STLR where possible. - Use the 'I' and 'J' constraints to hint for constants valid for immediate values Based on V8 changes at https://codereview.chromium.org/220793002 BUG=354405 Review URL: https://codereview.chromium.org/230963002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262986 0039d316-1c4b-4281-b951-d872f2087c98
-
jdduke@chromium.org authored
Fix an issue where keyboard events improperly reset the scroll status while a touch scroll was active in InputHandlerProxy. BUG=361160 Review URL: https://codereview.chromium.org/230663004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262985 0039d316-1c4b-4281-b951-d872f2087c98
-
mostynb@opera.com authored
Since we disabled StackTrace::OutputToStream and StackTrace::Print for uClibc builds, we should disable the related unittests for uClibc too. BUG=361130 Review URL: https://codereview.chromium.org/227503009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262984 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262983 0039d316-1c4b-4281-b951-d872f2087c98
-
torne@chromium.org authored
This picks up just one change, r262949: "Enable x64 build of host toolset". BUG=346626 TBR=jshin@chromium.org Review URL: https://codereview.chromium.org/232673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262982 0039d316-1c4b-4281-b951-d872f2087c98
-
mithro@mithis.com authored
BUG=352046 Review URL: https://codereview.chromium.org/228763006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262981 0039d316-1c4b-4281-b951-d872f2087c98
-
glider@chromium.org authored
BUG=344836, 235466 TBR=thakis@chromium.org Review URL: https://codereview.chromium.org/232723003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262980 0039d316-1c4b-4281-b951-d872f2087c98
-
skyostil@chromium.org authored
Disable rasterize_and_record_micro.top_25 on Windows because of crashes to make the performance bots green while investigation continues. BUG=360666 Review URL: https://codereview.chromium.org/231393003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262979 0039d316-1c4b-4281-b951-d872f2087c98
-
pilgrim@chromium.org authored
BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/231923002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262978 0039d316-1c4b-4281-b951-d872f2087c98
-
droger@chromium.org authored
This allows to change the implementation of InfoBarDelegate::web_contents() such that it no longer calls InfoBarManager::web_contents() (which will be removed), but InfoBarService::web_contents() instead. BUG=354379 TBR=jochen Review URL: https://codereview.chromium.org/228293004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262976 0039d316-1c4b-4281-b951-d872f2087c98
-
kouhei@chromium.org authored
Before this patch, InvokeCallbackTask was holding onto a callback using v8::Persistent, and v8::Persistent do not release on d-tor by default. This patch changes it to use UniquePersistent, so it will release callback on |~InvokeCallbackTask|. BUG=None Review URL: https://codereview.chromium.org/232733002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262975 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
The presubmit check is failing because of this. Review URL: https://codereview.chromium.org/231843005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262974 0039d316-1c4b-4281-b951-d872f2087c98
-
kinuko@chromium.org authored
Remotely for event/object rewiring. This also fixes all int32 used in IPC for in-memory object IDs to int BUG=349919 TEST=no functional changes yet Review URL: https://codereview.chromium.org/225403014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262973 0039d316-1c4b-4281-b951-d872f2087c98
-
phajdan.jr@chromium.org authored
BUG=317931 R=machenbach@chromium.org Review URL: https://codereview.chromium.org/228823004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262972 0039d316-1c4b-4281-b951-d872f2087c98
-
vabr@chromium.org authored
Two little fixes which did not fit in any of the major CLs for the internals page. BUG=347927 Review URL: https://codereview.chromium.org/232663002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262971 0039d316-1c4b-4281-b951-d872f2087c98
-
treib@chromium.org authored
Before deleting a profile, cancel all in-progress downloads to prevent a "Do you really want to exit Chrome" popup, which (1) is confusing because the message is not accurate, and (2) prevents a window corresponding to the deleted profile from closing, leaving it in an inconsistent state. A UI update (warning the user that downloads will be canceled) will follow in a separate CL. Note: I'm aware that this doesn't address crbug.com/289390 which is another way to trigger the same underlying bug. Working on it... BUG=336725 Review URL: https://codereview.chromium.org/214523003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262970 0039d316-1c4b-4281-b951-d872f2087c98
-
rmcilroy@chromium.org authored
BUG=354405,346626 Review URL: https://codereview.chromium.org/225093007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262969 0039d316-1c4b-4281-b951-d872f2087c98
-