- 30 Sep, 2014 40 commits
-
-
earthdok authored
- use more generic names for some packages. The new names are valid on both Precise and Trusty, - for some packages, run autoreconf or ./autogen.sh before building. This is required sometimes because the pre-generated configure script was generated using an older autoconf version than the one used on Trusty. Some packages don't even contain a pre-generated configure script. BUG=414189 R=glider@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/612153002 Cr-Commit-Position: refs/heads/master@{#297408}
-
mkwst authored
TBR=palmer@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/613173003 Cr-Commit-Position: refs/heads/master@{#297407}
-
rmcilroy authored
BUG=418029 Review URL: https://codereview.chromium.org/613153003 Cr-Commit-Position: refs/heads/master@{#297406}
-
chrome://syncfs-internalstzik authored
Adds "demoted" column in database dump view to see a tracker is demoted or not. BUG=None Review URL: https://codereview.chromium.org/612343002 Cr-Commit-Position: refs/heads/master@{#297405}
-
mkwst authored
This CL changes the ContentCredentialManagerDispatcher implementation of requesting credentials to pass the request through the PasswordStore. We don't yet use the result; we just verify that the callback is called and passes data around correctly. Baby steps. BUG=400674 Review URL: https://codereview.chromium.org/615863002 Cr-Commit-Position: refs/heads/master@{#297404}
-
mlamouri authored
PushMessagingDispatcher is now trying to get the Manifest before asking the registration to happen. If the gcm_sender_id is set, it will be used. Otherwise, the flow is unchanged. This is an considered option in order to no longer require an opaque property bag to be passed when registering. It might or might not stay as is. BUG=414873 Review URL: https://codereview.chromium.org/609393002 Cr-Commit-Position: refs/heads/master@{#297403}
-
qsr authored
This CL introduces promise for the python bindings. The API is following ECMAScript 6. BUG=418109 R=sdefresne@chromium.org,cmasone@chromium.org Review URL: https://codereview.chromium.org/610613002 Cr-Commit-Position: refs/heads/master@{#297402}
-
apavlov authored
R=brettw,pfeldman Review URL: https://codereview.chromium.org/598353003 Cr-Commit-Position: refs/heads/master@{#297401}
-
rsorokin authored
BUG=397105 Review URL: https://codereview.chromium.org/600733004 Cr-Commit-Position: refs/heads/master@{#297400}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/525becc..c8c6ed4 TBR=zmo@chromium.org,eustas@chromium.org Review URL: https://codereview.chromium.org/613173002 Cr-Commit-Position: refs/heads/master@{#297399}
-
v8-autoroll authored
Review URL: https://codereview.chromium.org/615873002 Cr-Commit-Position: refs/heads/master@{#297398}
-
mkwst authored
BUG=417841 Review URL: https://codereview.chromium.org/607383002 Cr-Commit-Position: refs/heads/master@{#297397}
-
horo authored
The plugins with private permission such as Flash plugin can bypass same origin checking by calling URLLoaderResource::GrantUniversalAccess(). They have their own origin checking logic (ex:cross-origin.xml). If ServiceWorker can intercept the HTTP requests from them, they can be misled. So ServiceWorker must be disabled for such plugins. These plugins have PERMISSION_PRIVATE permissions. - PDF Viewer - Google Talk Plugin Video Renderer - Google Talk Effects Plugin - Google Talk Plugin - Chrome Remote Desktop Viewer - Pepper Flash - Widevine Cdm Plugin BUG=413094 Review URL: https://codereview.chromium.org/606993002 Cr-Commit-Position: refs/heads/master@{#297396}
-
philipj authored
BUG=417669 Review URL: https://codereview.chromium.org/599103003 Cr-Commit-Position: refs/heads/master@{#297395}
-
horo authored
In current code, we check the main frame's data_source in RenderFrameImpl. But even if the main frame is not controlled by the ServiceWorker the iframe on it could be controlled by the ServiceWorker. So we must check their own frame_'s data_source. BUG=411151 Review URL: https://codereview.chromium.org/609283002 Cr-Commit-Position: refs/heads/master@{#297394}
-
felt authored
After some refactoring work, the SSL warning JS code was no longer checking the warning "type" correctly. This CL fixes that. BUG=418851 Review URL: https://codereview.chromium.org/616743002 Cr-Commit-Position: refs/heads/master@{#297393}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/d441820..525becc TBR=zmo@chromium.org,eustas@chromium.org Review URL: https://codereview.chromium.org/619593002 Cr-Commit-Position: refs/heads/master@{#297392}
-
horo authored
[1/2] blink: https://codereview.chromium.org/587213003/ [2/2] chromium: https://codereview.chromium.org/588153002/ This value is passed from the renederer to the ServiceWorker in the following steps. In the renederer process: blink::ResourceRequest::setFetchRequestMode() blink::ResourceRequest::m_fetchRequestMode content::WebURLLoaderImpl::Context::Start() blink::WebURLRequest::fetchRequestMode() GetFetchRequestMode() conetnt::RequestInfo::service_worker_request_mode In the browser process: conetnt::RequestInfo::service_worker_request_mode content::ResourceDispatcherHostImpl::BeginRequest() content::ServiceWorkerRequestHandler::InitializeHandler() content::ServiceWorkerProviderHost::CreateRequestHandler() content::ServiceWorkerControlleeRequestHandler::ServiceWorkerControlleeRequestHandler() content::ServiceWorkerControlleeRequestHandler::request_mode_ content::ServiceWorkerControlleeRequestHandler::MaybeCreateJob() content::ServiceWorkerURLRequestJob::ServiceWorkerURLRequestJob() content::ServiceWorkerURLRequestJob::request_mode_ content::ServiceWorkerURLRequestJob::CreateFetchRequest() content::ServiceWorkerFetchRequest::mode In the ServiceWorker process: content::ServiceWorkerFetchRequest::mode content::ServiceWorkerScriptContext::OnFetchEvent() GetBlinkFetchRequestMode() blink::WebServiceWorkerRequest::setMode() blink::WebServiceWorkerRequest::WebServiceWorkerRequestPrivate::m_mode blink::ServiceWorkerGlobalScopeProxy::dispatchFetchEvent() blilnk::RespondWithObserver::create() blilnk::RespondWithObserver::m_requestMode blink::WebServiceWorkerRequest::WebServiceWorkerRequestPrivate::m_mode blink::Request::create() blink::FetchRequestData::create() blink::FetchRequestData::m_mode BUG=416371,408507 Review URL: https://codereview.chromium.org/588153002 Cr-Commit-Position: refs/heads/master@{#297391}
-
fukino authored
As a start, I added compiled_resources.gyp for each components in file_manager. BUG=406995 TEST=GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/file_manager/foreground/js/compiled_resources.gyp && ninja -C out/Default GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/file_manager/background/js/compiled_resources.gyp && ninja -C out/Default GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/gallery/js/compiled_resources.gyp && ninja -C out/Default GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/video_player/js/compiled_resources.gyp && ninja -C out/Default GYP_GENERATORS=ninja tools/gyp/gyp --depth . ui/file_manager/image_loader/compiled_resources.gyp && ninja -C out/Default Review URL: https://codereview.chromium.org/619523003 Cr-Commit-Position: refs/heads/master@{#297390}
-
mithro authored
This change; * Makes non-vsync aligned rendering just another begin frame source. * Makes it easier to add vsync/begin frame stabilisation / filtering in the future. This CL no longer moves background ticking into the scheduler rather than the LayerTreeHostImpl, that will occur in a later CL. BUG=345459 Review URL: https://codereview.chromium.org/267783004 Cr-Commit-Position: refs/heads/master@{#297389}
-
kkinnunen authored
Gather a list of generated files in build_gles2_cmd_buffer.py rather than using a manual list. Calls format for gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions_autogen.h, which was previously omitted. Review URL: https://codereview.chromium.org/573953002 Cr-Commit-Position: refs/heads/master@{#297388}
-
kulkarni.a authored
Reusing the "base::StringPairs" insted of "std::vector<std::pair<std::string, std::string> >" same is defined in base/strings/string_split.h. BUG=412250 Review URL: https://codereview.chromium.org/593113002 Cr-Commit-Position: refs/heads/master@{#297387}
-
grunell authored
This will currently never be exercised, but is required when we support multiple MediaStreamAudioProcessors with different constraints. TEST=Since we don't support this yet, I have tested with a custom build hard coded to not create |audio_processor_| in MSAP (to simulate custom constraint settings that would cause no audio processing to happen). BUG=345296 Review URL: https://codereview.chromium.org/594233002 Cr-Commit-Position: refs/heads/master@{#297386}
-
ed authored
This avoids creating a temporary texture for the blending step, and if there's no background filter also avoids creating the backdrop texture. BUG= Review URL: https://codereview.chromium.org/608523003 Cr-Commit-Position: refs/heads/master@{#297385}
-
shreeram.k authored
This AX tests are failing because chromium side dependancy is yet to be merged. BUG=418486 Review URL: https://codereview.chromium.org/619473002 Cr-Commit-Position: refs/heads/master@{#297384}
-
pastarmovj authored
BUG=415964 TEST=Install an extension like "Webcam" and make sure it doesn't work when policy is enabled. Review URL: https://codereview.chromium.org/599903002 Cr-Commit-Position: refs/heads/master@{#297383}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/8cc0503..d441820 TBR=zmo@chromium.org,eustas@chromium.org Review URL: https://codereview.chromium.org/616803002 Cr-Commit-Position: refs/heads/master@{#297382}
-
hirono authored
Previously DirectoryModel#partialUpdate ignores changes if the function is called multiple times during the previous request is being procecced. BUG=417163 TEST=Repo steps of the bug. Review URL: https://codereview.chromium.org/611193002 Cr-Commit-Position: refs/heads/master@{#297381}
-
mcasas authored
As part of the masterplan of the bug, this CL removes the explicit android.hardware.Camera classes manipulations, asking instead classes VideoCapture{,Android,Tango} for this info. Some other minor cleanup goes along with it: VideoCaptureFactory.CamParams is only used inside VideoCaptureTango and to retrieve the name of the special Tango camera, that's refactored to hide the CamParams inside VideoCaptureTango. Other methods are further simplified in the VideoCaptureFactory so their use from C++ is more evident. BUG=418052 Review URL: https://codereview.chromium.org/602063002 Cr-Commit-Position: refs/heads/master@{#297380}
-
sergeyv authored
Revert of Refactor FakeAttachmentStore (patchset #3 id:40001 of https://codereview.chromium.org/601553004/) Reason for revert: Speculative revert: looks like it causes failures on the Linux asan: http://build.chromium.org/p/chromium.memory/builders/Linux%20ASan%20LSan%20Tests%20%283%29/builds/8113 Original issue's description: > Refactor FakeAttachmentStore > > Refactor FakeAttachmentStore into AttachmentStoreProxy and > InMemoryAttachmentStore backend. Break AttachmentStore interface into > AttachmentStoreBase (common interface for backends) and AttachmentStore > (referenced by datatype and AttachmentService). > > BUG= > R=maniscalco@chromium.org > > Committed: https://crrev.com/6ae2b341c73909cf902078446346d6c900273409 > Cr-Commit-Position: refs/heads/master@{#297339} TBR=maniscalco@chromium.org,pavely@chromium.org NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/619563002 Cr-Commit-Position: refs/heads/master@{#297379}
-
shuchen authored
BUG=361855 TEST=Verified on linux_chromeos. Review URL: https://codereview.chromium.org/606063002 Cr-Commit-Position: refs/heads/master@{#297378}
-
fukino authored
BUG=417113 TEST=manually tested. Review URL: https://codereview.chromium.org/609293002 Cr-Commit-Position: refs/heads/master@{#297377}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/22c3c2e..8cc0503 TBR=zmo@chromium.org,eustas@chromium.org Review URL: https://codereview.chromium.org/616783002 Cr-Commit-Position: refs/heads/master@{#297376}
-
mohan.reddy authored
This is part of a long-running background task to remove the remaining uses of the unchecked IPC_ENUM_TRAITS() macro. BUG=246708 Review URL: https://codereview.chromium.org/605123003 Cr-Commit-Position: refs/heads/master@{#297375}
-
phoglund authored
Revert of Revert of Enabling audio quality test on mac. (patchset #1 id:1 of https://codereview.chromium.org/613833002/) Reason for revert: Relanding: bots are now configured. Original issue's description: > Revert of Enabling audio quality test on mac. (patchset #1 id:1 of https://codereview.chromium.org/599103006/) > > Reason for revert: > There is one stubborn bot that is unreachable from VNC; reverting until we can sort that out. > > Original issue's description: > > Enabling audio quality test on mac. > > > > Note: will land on Monday; need to watch bots so that they execute the > > test right. > > > > TBR=vrk@chromium.org > > BUG=418034 > > > > Committed: https://crrev.com/c4e4aaaf43c0da2a01c0f32be737dcbbd5f13e92 > > Cr-Commit-Position: refs/heads/master@{#297166} > > TBR=vrk@chromium.org > NOTREECHECKS=true > NOTRY=true > BUG=418034 > > Committed: https://crrev.com/18efcd361beccd5eca81b1a046c30fde72a88953 > Cr-Commit-Position: refs/heads/master@{#297257} TBR=vrk@chromium.org NOTREECHECKS=true NOTRY=true BUG=418034 Review URL: https://codereview.chromium.org/612333002 Cr-Commit-Position: refs/heads/master@{#297374}
-
calamity authored
This CL moves the --custom-launcher-page switch into app_list_switches.h because it probably belongs there with the other app list related switches. BUG=416756 Review URL: https://codereview.chromium.org/598463002 Cr-Commit-Position: refs/heads/master@{#297373}
-
jam authored
Revert of Swarm debug Windows 7 tests on main waterfall. (patchset #1 id:1 of https://codereview.chromium.org/618533002/) Reason for revert: There are some failures in browser_tests and sync_integration_tests. Original issue's description: > Swarm debug Windows 7 tests on main waterfall. > > I moved all tests to Win Tests (dbg)(1) in preparation for removing 2, 3, 4, 5, & and Interactive Tests (dbg). > > BUG=414808 > R=maruel@chromium.org > > Committed: https://chromium.googlesource.com/chromium/src/+/5f7ee2f338c9d7c5616c18e594ec8ef834d718c6 TBR=maruel@chromium.org NOTREECHECKS=true NOTRY=true BUG=414808 Review URL: https://codereview.chromium.org/615833002 Cr-Commit-Position: refs/heads/master@{#297372}
-
gunsch authored
R=lcwu@chromium.org,maclellant@chromium.org BUG=None Review URL: https://codereview.chromium.org/613093002 Cr-Commit-Position: refs/heads/master@{#297371}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/f5b92e7..22c3c2e TBR=zmo@chromium.org,eustas@chromium.org Review URL: https://codereview.chromium.org/614823003 Cr-Commit-Position: refs/heads/master@{#297370}
-
keishi authored
We need to begin animation frames in the WebPagePopup to trigger resize events so we let WebTestProxy call animation on the page popup as well. BUG=409503 Review URL: https://codereview.chromium.org/603873002 Cr-Commit-Position: refs/heads/master@{#297369}
-