- 27 Jan, 2015 40 commits
-
-
achuith authored
BUG=450278 TEST=cros unittests Review URL: https://codereview.chromium.org/868253003 Cr-Commit-Position: refs/heads/master@{#313395}
-
ryanackley authored
Currently, data stored by a legacy packaged app in the HTML5 filesystem and IndexedDB is lost when it gets migrated to the new type of Chrome App (internally referred to as "platform apps"). This is because Chrome stores extension and legacy packaged app data in the general storage partition and it stores platform app data in a it's own isolated storage partition. When a legacy packaged app is upgraded to the new type of app, a new isolated storage partition is created but the data gets left behind in the general storage partition. This change fixes this by performing a migration of the data to the new storage partition at the time of the upgrade. It only migrates IndexedDB and HTML5 filesystem because these are the only permanent data storage options available to platform apps. Platform apps are prohibited from using DOMStorage and WebSQL. Data stored by chrome.storage APIs is separate from the storage partitions. BUG=302577 Review URL: https://codereview.chromium.org/671873004 Cr-Commit-Position: refs/heads/master@{#313394}
-
andresantoso authored
A better fix for https://codereview.chromium.org/822083004/. Set kServiceRedirectedInIncognito so that ExtensionCommandsGlobalRegistry::Get does not return null on incognito profiles, and remove null checks that are no longer necessary. BUG=450903 Review URL: https://codereview.chromium.org/883553002 Cr-Commit-Position: refs/heads/master@{#313393}
-
earthdok authored
This mirrors the change made to build/runtest.py in https://codereview.chromium.org/881743004 BUG=245376 R=stip@chromium.org, jln@chromium.org TBR=mseaborn@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/880053003 Cr-Commit-Position: refs/heads/master@{#313392}
-
gunsch authored
See: https://codereview.chromium.org/831523005 R=dtrainor@chromium.org,lcwu@chromium.org BUG=None Review URL: https://codereview.chromium.org/879073002 Cr-Commit-Position: refs/heads/master@{#313391}
-
scottmg authored
d:\src\cr3\src\net\udp\udp_socket_win.cc(330): error C2220: warning treated as error - no 'object' file generated d:\src\cr3\src\net\udp\udp_socket_win.cc(330): warning C4457: declaration of 'address' hides function parameter d:\src\cr3\src\net\udp\udp_socket_win.cc(319): note: see declaration of 'address' d:\src\cr3\src\net\udp\udp_socket_win.cc(351): warning C4457: declaration of 'address' hides function parameter d:\src\cr3\src\net\udp\udp_socket_win.cc(340): note: see declaration of 'address' R=eroman@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/882733003 Cr-Commit-Position: refs/heads/master@{#313390}
-
johannkoenig authored
Correctly try to detect AVX2: https://codereview.chromium.org/869853003 CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_chromium_vista_rel_ng R=tomfinegan@chromium.org CC=dconnelly@chromium.org,machenbach@chromium.org,yoichio@chromium.org Review URL: https://codereview.chromium.org/882793002 Cr-Commit-Position: refs/heads/master@{#313389}
-
jaekyun authored
For now there isn't any API to write some logs to dev tools console from Java layer. It is required to fix http://crbug.com/426751 . BUG=426751 Review URL: https://codereview.chromium.org/873133002 Cr-Commit-Position: refs/heads/master@{#313388}
-
boliu authored
Initialize in-process gpu before threads are created. In-process gpu init appends command line switches to the global current process command line, which is only safe to do before any background threads start and read the command line. BUG=450396 Review URL: https://codereview.chromium.org/879703003 Cr-Commit-Position: refs/heads/master@{#313387}
-
samuong authored
BUG= TBR=stgao@chromium.org Review URL: https://codereview.chromium.org/883743003 Cr-Commit-Position: refs/heads/master@{#313386}
-
chrome://flagsdcheng authored
BUG=99379 Review URL: https://codereview.chromium.org/880093002 Cr-Commit-Position: refs/heads/master@{#313385}
-
alexmos authored
* Remove old versions of createChildFrame. * Add browser tests. Related CLs: Chromium part 1: https://codereview.chromium.org/837283003/ Blink part 1: https://codereview.chromium.org/793493003/ Blink part 2: https://codereview.chromium.org/838903002/ BUG=426512 Review URL: https://codereview.chromium.org/797813006 Cr-Commit-Position: refs/heads/master@{#313384}
-
nasko authored
Currently the SiteInstance and RenderProcessHost for a RenderFrameHost are retrieved from the associated RenderViewHost. The RFH code is sufficiently along the way to keep track of these on its own. BUG=304341 Review URL: https://codereview.chromium.org/881683002 Cr-Commit-Position: refs/heads/master@{#313383}
-
kmarshall authored
BUG= Review URL: https://codereview.chromium.org/843453002 Cr-Commit-Position: refs/heads/master@{#313382}
-
xunjieli authored
Some servers get confused when we send PASV twice. This CL delays sending PASV/EPSV until RETR or LIST. BUG=450687 Review URL: https://codereview.chromium.org/861193007 Cr-Commit-Position: refs/heads/master@{#313381}
-
zmo authored
BUG=429053 TEST=gpu_unittests R=piman@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/878793002 Cr-Commit-Position: refs/heads/master@{#313380}
-
mtomasz authored
Before, it was not well defined what's the name of a root entry. TEST=None BUG=446437 Review URL: https://codereview.chromium.org/881903002 Cr-Commit-Position: refs/heads/master@{#313379}
-
scottmg authored
On VS2015 without this causes: d:\src\cr3\src\base\metrics\histogram.cc(372): error C2248: 'scoped_ptr<base::SampleVector,base::DefaultDeleter<T>>::scoped_ptr': cannot access private member declared in class 'scoped_ptr<base::SampleVector,base::DefaultDeleter<T>>' with [ T=base::SampleVector ] d:\src\cr3\src\base\memory\scoped_ptr.h(312): note: see declaration of 'scoped_ptr<base::SampleVector,base::DefaultDeleter<T>>::scoped_ptr' with [ T=base::SampleVector ] I'm not entirely sure why this doesn't happen on earlier compilers, I guess something's move-ability changed. R=isherman@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/882783002 Cr-Commit-Position: refs/heads/master@{#313378}
-
earthdok authored
BUG=451983 TBR=thestig@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/881933002 Cr-Commit-Position: refs/heads/master@{#313377}
-
sebmarchand authored
Version 0.8.4.1 [----------] Fixed some unittest failures. Version 0.8.4.0 [5130039b66] Synchronize page protection modifications. [e204e630ba] SyzyASan - Fix an issue when the first block of a corrupt range has page protections. [aef343e391] Preserve alignment of code blocks generated by unsupported compilers. See https://code.google.com/p/syzygy/source/browse/syzygy/build/RELEASE-NOTES.TXT for the full version of the release notes. BUG= Review URL: https://codereview.chromium.org/882803002 Cr-Commit-Position: refs/heads/master@{#313376}
-
mpearson authored
The results are summarized here: goto/disallow-inlining-trial-results This is effectively a revert of https://src.chromium.org/viewvc/chrome?revision=273966&view=revision and http://src.chromium.org/viewvc/chrome?view=revision&revision=278811 BUG= Review URL: https://codereview.chromium.org/879053002 Cr-Commit-Position: refs/heads/master@{#313375}
-
scottmg authored
d:\src\cr3\src\base\json\json_parser.cc(431): error C2220: warning treated as error - no 'object' file generated d:\src\cr3\src\base\json\json_parser.cc(431): warning C4456: declaration of 'next_char' hides previous local declaration d:\src\cr3\src\base\json\json_parser.cc(427): note: see declaration of 'next_char' I don't think there's any need for a new variable inside the loop. R=thestig@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/881003003 Cr-Commit-Position: refs/heads/master@{#313374}
-
scottmg authored
d:\src\cr3\src\base\win\registry.cc(665): error C2220: warning treated as error - no 'object' file generated d:\src\cr3\src\base\win\registry.cc(665): warning C4456: declaration of 'result' hides previous local declaration d:\src\cr3\src\base\win\registry.cc(659): note: see declaration of 'result' I don't think there's any need for separate variables. R=cpu@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/868253004 Cr-Commit-Position: refs/heads/master@{#313373}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/52b64b4..8ece6eb CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=fmalita@google.com Review URL: https://codereview.chromium.org/881053002 Cr-Commit-Position: refs/heads/master@{#313372}
-
earthdok authored
BUG=104806,106912,416957 TBR=thestig@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/878783003 Cr-Commit-Position: refs/heads/master@{#313371}
-
benwells authored
This feature is now known by the name 'bookmark apps'. BUG=441127 Review URL: https://codereview.chromium.org/883603002 Cr-Commit-Position: refs/heads/master@{#313370}
-
jamescook authored
BUG=449103 TBR=kpschoedel@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/885463002 Cr-Commit-Position: refs/heads/master@{#313369}
-
jln authored
Disable DropFileSystemAccessIsSafe and CannotRegainPrivileges on ASAN. BUG=451603 Review URL: https://codereview.chromium.org/881923002 Cr-Commit-Position: refs/heads/master@{#313368}
-
ynovikov authored
BUG=368775 TEST=Casting WebRTC works on daisy and peach_pit Review URL: https://codereview.chromium.org/880643004 Cr-Commit-Position: refs/heads/master@{#313367}
-
pkotwicz authored
On X11, ui::Event::GetCharacter() returns 0x0 when the correct return value when control is pressed is unclear (e.g. Ctrl+[). This CL makes Ozone follow the same behavior. BUG=450849 TEST=Manual, see bug Review URL: https://codereview.chromium.org/872213002 Cr-Commit-Position: refs/heads/master@{#313366}
-
mtklein authored
Add me to OWNERS too to shut up the presubmits. I tested this locally on OS X / x86-64. Relying on the bots for the rest. BUG= Review URL: https://codereview.chromium.org/859393004 Cr-Commit-Position: refs/heads/master@{#313365}
-
scottmg authored
d:\src\cr3\src\base\logging.cc(167): error C2220: warning treated as error - no 'object' file generated d:\src\cr3\src\base\logging.cc(167): warning C4459: declaration of 'log_file' hides global declaration d:\src\cr3\src\base\logging.cc(103): note: see declaration of 'logging::`anonymous-namespace'::log_file' There was 3 different things called log_file in this file: a global FileHandle, a local PathString, and a PathChar* member variable in LoggingSettings. :/ (Should probably rename all the globals to g_ prefixed in a followup.) R=thakis@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/883853003 Cr-Commit-Position: refs/heads/master@{#313364}
-
Brad Nelson authored
BUG=None TEST=None R=binji@chromium.org Review URL: https://codereview.chromium.org/884523002 Cr-Commit-Position: refs/heads/master@{#313363}
-
erikchen authored
Summary of changes available at: https://chromium.googlesource.com/external/google-toolbox-for-mac.git/+log/a095262..17eee69 Notable changes include: 17eee69 Make GTMSMJobRemove() have the same behavior on OSX 10.10+ as it has on previous OSX versions. BUG=390276 Review URL: https://codereview.chromium.org/858093004 Cr-Commit-Position: refs/heads/master@{#313362}
-
scottmg authored
d:\src\cr3\src\base\metrics\histogram.cc(498): warning C4457: declaration of 'count' hides function parameter d:\src\cr3\src\base\metrics\histogram.cc(490): note: see declaration of 'count' R=isherman@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/878223002 Cr-Commit-Position: refs/heads/master@{#313361}
-
thakis authored
With swarming, the run command gets baked into the .isolate file instead of going through runtest.py. Usually, an invocation of test_env.py is baked into the isolate file. In asan mode, this used to call asan_symbolize.py, which on Windows doesn't work -- prepend it with sys.executable to make this work on all platforms. BUG=451741 Review URL: https://codereview.chromium.org/877183002 Cr-Commit-Position: refs/heads/master@{#313360}
-
mad authored
BUG=438287 Review URL: https://codereview.chromium.org/856393005 Cr-Commit-Position: refs/heads/master@{#313359}
-
jiajia.qin authored
In old implementaion, when SourceState::Append failed, it will report DEMUXER_ERROR_COULD_NOT_OPEN error in ChunkDemuxer::AppendData case INITIALIZING. But in fact, appended data may include initialization segment and media segment both. The error can happen in any point. In MSE spec ( http://w3c.github.io/media-source/#byte-stream-formats ) The user agent must run the end of stream algorithm with the error parameter set to "decode" when in some conditions. They all happen in parsing the appended data. So, here when SourceState::Append fails, it should report PIPELINE_ERROR_DECODE. Another side, when the segment parser loop successfully parses a complete initialization segment, it should call ReportMetadata immediately. Otherwise, when meeting PIPELINE_ERROR_DECODE but WebMediaPlayer's ready_state_ is still ReadyStateHaveNothing, it will be treated as NetworkStateFormatError not NetworkStateDecodeError. This Cl will resolve above two problems. BUG=None TEST=LayoutTest: https://codereview.chromium.org/742653002 Review URL: https://codereview.chromium.org/710693003 Cr-Commit-Position: refs/heads/master@{#313358}
-
enne authored
SingleThreadProxy was previously not considering DidFailToInitializeOutputSurface responses as an outstanding RequestNewOutputSurface call. This would cause the embedder to start servicing an output surface request, then composite, receive another, and then have double output surface requests. The fix is to consider this failure state as a request. BUG=444277 Review URL: https://codereview.chromium.org/871743002 Cr-Commit-Position: refs/heads/master@{#313357}
-
leviw authored
http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=RenderFrameHostImplBrowserTest.IsFocused_Change&testType=content_browsertests BUG=452631 TBR=mlamouri@chromium.org Review URL: https://codereview.chromium.org/865063003 Cr-Commit-Position: refs/heads/master@{#313356}
-