- 03 Feb, 2014 40 commits
-
-
blundell@chromium.org authored
This CL eliminates the forwarding that PasswordManagerDelegateImpl was previously doing to ContentPasswordManagerDriver. Instead, PasswordManagerDelegate has a new GetDriver() method that returns the PasswordManagerDriver that the core PasswordManager code should use. Tests are updated to reflect this change. BUG=335096 Review URL: https://codereview.chromium.org/152693003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248592 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248591 0039d316-1c4b-4281-b951-d872f2087c98
-
sheu@chromium.org authored
Both 3.4 and 3.8 kernels for Exynos have supported setting the GSC alpha component through V4L2_CID_ALPHA_COMPONENT for some time now. Remove the V4L2_CID_GLOBAL_ALPHA workaround path. BUG=326590 TEST=local build, run on exynos Review URL: https://codereview.chromium.org/147793006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248590 0039d316-1c4b-4281-b951-d872f2087c98
-
eseidel@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=166316:166323&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/150413004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248589 0039d316-1c4b-4281-b951-d872f2087c98
-
tdresser@chromium.org authored
This patch moves ChromeOS specific logging from MetricsLog to MetricsLogChromeOS. BUG=339100 Review URL: https://codereview.chromium.org/146913005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248588 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
- Handle devices without an "AndroidCAStore" KeyStore. Add a histogram to record when this happens. - Remove resolved TODO. - Unnecessary exception check (relevant function already CalledByNative, not CalledByNativeUnchecked) BUG=116838 TEST=none Review URL: https://codereview.chromium.org/144153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248587 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
Not all versions of Windows 7 and later ship with Media Foundation DLLs. Instead of crashing while attempting to delay load the DLL, preemptively load the library and fail gracefully if we're unable to do so. BUG=339678 Review URL: https://codereview.chromium.org/151993002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248586 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
Accept "into the public domain" as well as "in the public domain" as indication of a public domain license. NOTRY=true Review URL: https://codereview.chromium.org/151883008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248584 0039d316-1c4b-4281-b951-d872f2087c98
-
noamsml@chromium.org authored
Add a PrivetDeviceResolver that resolves a device and parses its TXT record based on the Privet protocol. BUG= Review URL: https://codereview.chromium.org/131503013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248583 0039d316-1c4b-4281-b951-d872f2087c98
-
rsadam@chromium.org authored
BUG=297132 Review URL: https://codereview.chromium.org/150783002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248582 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
This CL: - Uses smaller assets for drawing the phantom window. This decreases the minimum size that a phantom window can be drawn at and still look good (i.e. the left and right corner assets do not overlap) - Enforces a minimum size for the phantom window BUG=335443 TEST=Manual, see bug Review URL: https://codereview.chromium.org/147103003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248581 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
ProxyMessagePipeEndpoint::EnqueueMessage() needs to look at each handle (i.e., dispatcher) and decide what to do. This CL doesn't actually do anything yet exactly. I also need to check (at a higher level) that we're not sending the peer handle over a given handle, hence I'm splitting out this part now (since that work will touch on the same things as this). R=davemoore@chromium.org Review URL: https://codereview.chromium.org/145483005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248580 0039d316-1c4b-4281-b951-d872f2087c98
-
mpcomplete@google.com authored
BUG=320082 R=darin@chromium.org Review URL: https://codereview.chromium.org/139613005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248579 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
See https://bugzilla.mozilla.org/show_bug.cgi?id=966060 BUG=none Review URL: https://codereview.chromium.org/152973003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248578 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
Although TrayIME removes the notification, the callback notification delegate may survive due to complicated ref-counted-ness of NotificationDelegate. Anyways WeakPtr would be better here rather than Unretained. BUG=336650 R=stevenjb@chromium.org, dewittj@chromium.org TEST=None Review URL: https://codereview.chromium.org/138833004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248577 0039d316-1c4b-4281-b951-d872f2087c98
-
jamescook@chromium.org authored
This allows us to separate browser process, render process and common code, similar to how content/shell is organized. This also allows the DEPS files to be more restrictive to enforce those dependencies. A parallel CL adds apps/shell/renderer and some renderer-specific code: https://codereview.chromium.org/149163002/ BUG=none TEST=compiles R=joi@chromium.org, miket@chromium.org TBR=stevenjb@chromium.org for DEPS on src/chromeos (just moving the DEP from one file to another) Review URL: https://codereview.chromium.org/151893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248575 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
Recent flake: http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%283%29/builds/24993 Flakiness dashboard: http://chromium-build-logs.appspot.com/gtest_query?gtest_query=PolicyTest.FileURLBlacklist BUG=339240 TEST=none R=erg@chromium.org TBR=joaodasilva@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/139413008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248574 0039d316-1c4b-4281-b951-d872f2087c98
-
samarth@chromium.org authored
Log status of the New Tab page URL (e.g. valid URL from search provider, insecure url, etc.) whenever a New Tab is opened. BUG=none Review URL: https://codereview.chromium.org/150033002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248573 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
BUG=309844 R=jamiewalch@chromium.org Review URL: https://codereview.chromium.org/131483011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248572 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
1) hide bubble after fixing a missing month or year 2) CVC validity should be based on card type best guess 3) cross-field validation shouldn't override single-field validation, but fields that are validly individually shouldn't skip cross-field validation just because their partner field is invalid (necessary for \#2) BUG=336998 Review URL: https://codereview.chromium.org/141843005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248571 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
DialogClientView was overriding the default height of label buttons to be 0, which confused some of the views sizing code. Set the width independently of the height. BUG=339247 R=msw@chromium.org, sadrul@chromium.org Review URL: https://codereview.chromium.org/149243008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248570 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
Recent flake: http://build.chromium.org/p/chromium.mac/builders/iOS%20Simulator%20%28dbg%29/builds/15075 Flakiness dashboard: http://chromium-build-logs.appspot.com/gtest_query?gtest_query=CancelationSignalTest.Cancel BUG=340360 TEST=none R=erg@chromium.org TBR=rlarocque@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/148613010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248569 0039d316-1c4b-4281-b951-d872f2087c98
-
petewil@chromium.org authored
It seems to be causing sync to fail for the official build on a fresh directory. > Use the proper name for the app info protobuf to mach the sync server > > BUG=339094 > > Review URL: https://codereview.chromium.org/149723003 TBR=petewil@chromium.org Review URL: https://codereview.chromium.org/153113002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248568 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
Recent flake: http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%286%29/builds/25174 Flakiness dashboard: http://chromium-build-logs.appspot.com/gtest_query?gtest_query=ExtensionBrowserTest.RSSParseFeedValidFeed1 BUG=340354 TEST=none R=erg@chromium.org TBR=finnur@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/150693004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248567 0039d316-1c4b-4281-b951-d872f2087c98
-
bengr@chromium.org authored
The change prevent the data reduction proxy's authentication headers from being exposed in net logs and dev tools. BUG=179382 Review URL: https://codereview.chromium.org/149703005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248566 0039d316-1c4b-4281-b951-d872f2087c98
-
shadi@chromium.org authored
WV test license server (available on on Linux) is failing to launch on the bots. BUG=339983 Review URL: https://codereview.chromium.org/152013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248563 0039d316-1c4b-4281-b951-d872f2087c98
-
rsadam@chromium.org authored
BUG=338456 Review URL: https://codereview.chromium.org/131143005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248562 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
BUG=337679 Review URL: https://codereview.chromium.org/151133002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248561 0039d316-1c4b-4281-b951-d872f2087c98
-
spang@chromium.org authored
This watches for new input devices and opens any that appear for event dispatching. This is only supported when use_udev==1. Review URL: https://codereview.chromium.org/150633005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248560 0039d316-1c4b-4281-b951-d872f2087c98
-
rlp@chromium.org authored
Availabile -> Available BUG=325439, 289023 Review URL: https://codereview.chromium.org/152303003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248559 0039d316-1c4b-4281-b951-d872f2087c98
-
hubbe@chromium.org authored
Review URL: https://codereview.chromium.org/131233007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248558 0039d316-1c4b-4281-b951-d872f2087c98
-
danakj@chromium.org authored
Currently tests initialize GL by calling into methods that should be internal to the gl bindings code. Instead, everyone should go through GLSurface::InitializeOneOff. Also GLSurface::InitializeOneOff early outs if it was already called, leading to a pattern of initializing GL all over the place just in case and not having a clear idea of where it should be set up. Instead, DCHECK that it is not called more than once, and move calls to this method to be during process startup for unit test suites instead of mid-test. This adds two test variants of InitializeOneOff for tests to call, that set up OSMesa or Mock GL bindings, via GLSurface::InitializeOneOff. R=ben@chromium.org, piman@chromium.org, sievers@chromium.org, piman, sievers BUG=270918 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=247793 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=248049 Review URL: https://codereview.chromium.org/135213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248557 0039d316-1c4b-4281-b951-d872f2087c98
-
gbillock@chromium.org authored
BUG=317741 R=macourteau@chromium.org, oshima@chromium.org Review URL: https://codereview.chromium.org/142523006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248556 0039d316-1c4b-4281-b951-d872f2087c98
-
earthdok@chromium.org authored
Since that header is now available in Chrome, we can include it instead of re-defining the interface. Also, the definition of __msan_unpoison() in base/compiler_specific.h conflicted with the definition in sanitizer/msan_interface.h, preventing us from including the interface header anywhere (e.g. during debugging). BUG=178409 R=eugenis@chromium.org, mark@chromium.org Review URL: https://codereview.chromium.org/132913011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248555 0039d316-1c4b-4281-b951-d872f2087c98
-
fsamuel@chromium.org authored
In the denyWebView module, we now create a custom element so the comment in dispatcher.cc is out of date. This CL removes the comment and the if statement in question. BUG=196453 Review URL: https://codereview.chromium.org/138563005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248554 0039d316-1c4b-4281-b951-d872f2087c98
-
jyasskin@chromium.org authored
BUG=328521 TBR=weitaosu@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/142093004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248549 0039d316-1c4b-4281-b951-d872f2087c98
-
jamescook@chromium.org authored
This is a step toward getting app_shell to initialize a renderer with extension support. * Add apps/shell/renderer so we can separate out the render process code * Do a little bit of cleanup in the Permissions system, which is the next thing to tackle. BUG=335632 TEST=none Review URL: https://codereview.chromium.org/149163002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248548 0039d316-1c4b-4281-b951-d872f2087c98
-
jamescook@chromium.org authored
So we can add files in apps/shell without bugging other people. BUG=none TEST=none R=miket@chromium.org Review URL: https://codereview.chromium.org/143263023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248547 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
v4l2capture is a python C extension to access Video4Linux camera devices. BUG=331450 Review URL: https://codereview.chromium.org/123743004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248546 0039d316-1c4b-4281-b951-d872f2087c98
-
danakj@chromium.org authored
R=kbr@chromium.org, piman@chromium.org, piman BUG=270918 Review URL: https://codereview.chromium.org/151593002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248541 0039d316-1c4b-4281-b951-d872f2087c98
-