- 02 Jun, 2014 15 commits
-
-
kbr@chromium.org authored
Re-enable the failing expectations for the Pixel.CSS3DBlueBox test. The <meta viewport> tag added to this test is causing failures on some desktop bots. See Issue 368495. > Remove failing expectations for pixel tests. > > This is a follow-up patch for r273755. > > BUG=368495 > TBR=kbr@chromium.org > > Review URL: https://codereview.chromium.org/304183008 TBR=alokp@chromium.org Review URL: https://codereview.chromium.org/306303002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274176 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
Replace GetResourceListCallback with FileListCallback. Rename GetAllResourceList and GetResourceListInDirectory to GetAllFileList and GetFileListInDirectory. Rename FakeDriveService counter variables. Remove GetOldestCreatedFolderResource in drive_backend_util.cc and merged the code to folder_creator.cc BUG=231125 TEST=unit_tests Review URL: https://codereview.chromium.org/305913002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274175 0039d316-1c4b-4281-b951-d872f2087c98
-
mtomasz@chromium.org authored
Before, the net::IOBuffer was being passed as a pointer, from the FileStreamReader::Read to operations::ReadFile. However, there are PostTask invocations on the way. When FileStreamReader is deleted after a PostTask is fired from FileStreamReader::Read, and the operation is not completed, then the net::IOBuffer will become invalid. When the operation is completed, operation::ReadFile would cause a segmentation fault. Since net::IOBuffer is ref counted, we should pass it as ref counted object to be sure, that the buffer is always valid. This patch migrates from passing IOBuffer as a pointer, to scoped_refptr. TEST=Tested manually, that crashing doesn't occur anymore. BUG=248427 Review URL: https://codereview.chromium.org/301973007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274174 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
Implement IsNonNativeLocalPathDirectory for supporting non-local non-Drive directory access in apps. What the CL does is: * Almost mechanically moves out the local function CheckIfDirectoryExists from open_util.cc to fileapi_util.cc and just use it for the desired implementation. * Removes Drive-specific helper code for the feature. * Allows file_system_api test setup code to refer the info of File Manager app. (Because the new general implementation checks the directory existence in the permission level of the file manager, the test needs access to it.) BUG=367028 Review URL: https://codereview.chromium.org/304373004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274173 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
Revert of Fix legacy dummy window visibility inheritance. RenderWidgetHostViewAura may be shown(::Show()) bef… (https://codereview.chromium.org/272173002/) Reason for revert: Regression: makes frameless packaged app windows unmovable in Aero. Confirmed with local git revert. BUG=374681 TBR=ben@chromium.org Original issue's description: > Fix legacy dummy window visibility inheritance. RenderWidgetHostViewAura may be shown(::Show()) before legacy window creation, in such case dummy window was later created hidden which leads to wrong behaviour. E.g. NPAPI Flash in windowless mode tracks associated window visibility and slows down draw invalidation. > > R=ben@chromium.org > BUG= > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=270739 Review URL: https://codereview.chromium.org/309553010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274172 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
Changes: 1) Run clang-format through source and header files. 3) Fix data member variables to use unix_hacker_ style. 4) Rename file name to mock_web_user_media_client. 5) Rename class name to MockWebUserMediaClient. BUG=331299 TEST=content_unittests, content_shell. No functional changes TBR=dpranke@chromium.org Review URL: https://codereview.chromium.org/308073011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274171 0039d316-1c4b-4281-b951-d872f2087c98
-
tmdiep@chromium.org authored
App launch times can (rarely) be equal, so the comparison should have been less than or equal to. BUG=379132 TEST=unit_tests (EphemeralAppServiceTest.*) Review URL: https://codereview.chromium.org/308003011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274170 0039d316-1c4b-4281-b951-d872f2087c98
-
l.gombos@samsung.com authored
Review URL: https://codereview.chromium.org/306893006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274169 0039d316-1c4b-4281-b951-d872f2087c98
-
reveman@chromium.org authored
Prior to this change, the browser compositor allocated buffers on the UI thread while the buffer allocation for renderers was done on the IO thread. This moves all allocation to the UI thread, which makes life easier for GpuMemoryBuffer implementations and avoids potentially expensive allocation costs on the IO thread. BUG= Review URL: https://codereview.chromium.org/302443008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274168 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
ShellTestHelper doesn't need to spawn a thread. Nuking the thread simplifies the view manager tests. BUG=365012 TEST=covered by tests R=ben@chromium.org Review URL: https://codereview.chromium.org/308053008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274167 0039d316-1c4b-4281-b951-d872f2087c98
-
pavely@chromium.org authored
GetOrDownloadAttachments creates state object that tracks set of attachments for which requests are still pending. Once AttachmentStore::Read finishes AttachmentServiceImpl calls AttachmentDownloader to download attachments that were not found locally. Once all calls to Downloader finish consumer callback is called with results. I used AttachmentIdSet in this code but didn't update AttachmentIdList to AttachmentIdSet in other places. I'd rather do it in separate change. R=maniscalco@chromium.org BUG=376073 Review URL: https://codereview.chromium.org/307783002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274164 0039d316-1c4b-4281-b951-d872f2087c98
-
calamity@chromium.org authored
This CL fixes a crash in the StartPageView that was happening because an observer was not being cleaned up on destruction. This CL also adds a profile change unit test which serves as a regression test for this issue. BUG=378572 TEST=Have experimental app list enabled and switch between signed in profiles repeatedly. There should be no crash. Review URL: https://codereview.chromium.org/305123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274162 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
Added UMA constant for counting IDC_SPELLCHECK_SUGGESTION_*. TBR=asvitkine BUG=378933 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=273817 Review URL: https://codereview.chromium.org/306103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274161 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
R=scottmg@chromium.org Review URL: https://codereview.chromium.org/301193005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274160 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274154 0039d316-1c4b-4281-b951-d872f2087c98
-
- 01 Jun, 2014 25 commits
-
-
joaodasilva@chromium.org authored
This allows other tests in the same suite to call SetPolicyProviderForTesting. TBR=pastarmovj@chromium.org BUG=None Review URL: https://codereview.chromium.org/303393003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274148 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=370433 TEST=None TBR=sky@chromium.org Review URL: https://codereview.chromium.org/307203002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274147 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
> Record RenderViewContextMenu.Used histogram before calling observers. > > BUG=378933 > > Review URL: https://codereview.chromium.org/306103002 TBR=vitalybuka@chromium.org Review URL: https://codereview.chromium.org/301233006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274146 0039d316-1c4b-4281-b951-d872f2087c98
-
reveman@chromium.org authored
BUG=371530 NOTRY=true TBR=sievers Review URL: https://codereview.chromium.org/310603002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274145 0039d316-1c4b-4281-b951-d872f2087c98
-
nednguyen@google.com authored
BUG= Review URL: https://codereview.chromium.org/292443003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274144 0039d316-1c4b-4281-b951-d872f2087c98
-
blundell@chromium.org authored
- switches::kGoogleBaseURL is moved into the Google component - The information of whether background networking is enabled is now obtained from GoogleURLTrackerClient. BUG=373222 TBR=thakis Review URL: https://codereview.chromium.org/301383003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274143 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
This helper method can be used to determine if a policy comes from the profile cloud policy provider or from another source. It will be used to determine the source of the Managed Bookmarks policy and set the folder name accordingly. BUG=49598 Review URL: https://codereview.chromium.org/304183007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274142 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
TBR=marja@chromium.org BUG=379579 Review URL: https://codereview.chromium.org/307213002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274141 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
BUG=379574 Review URL: https://codereview.chromium.org/306053009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274140 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
It seems to be much more common to have this kind of resources file as a normal GYP file rather than an *include* GYP file. $ git ls-files | grep resources.gyp$ | grep -v ash_resources | wc -l 9 vs $ git ls-files | grep resources.gypi$ | grep -v ash_resources | wc -l 3 BUG=None TEST=None R=jamescook@chromium.org NOTRY=true TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/307993007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274130 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
BUG=379570 Review URL: https://codereview.chromium.org/308253002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274128 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
BUG=379564 NOTRY=True TBR=dtu@chromium.org Review URL: https://codereview.chromium.org/312473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274127 0039d316-1c4b-4281-b951-d872f2087c98
-
yzshen@chromium.org authored
BUG=366797 TEST=None Review URL: https://codereview.chromium.org/303233009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274126 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
BUG=379561 TBR=dtu@chromium.org NOTRY=True Review URL: https://codereview.chromium.org/309623006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274125 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
This CL makes a couple more changes to accomodate for the implementation of this policy: - moved the kManagedBookmarks pref into the bookmarks component, so that it can be referred to from there; - moved the strings for the managed bookmarks folder name for the same reasons; - updated the policy schema to support child bookmarks; - updated the ManagedBookmarksPolicyHandler to use the schema validation code, and added a new unit test for that. TBR=nyquist@chromium.org BUG=49598 Review URL: https://codereview.chromium.org/307993005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274124 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
The gyp file has this in OTHER_LDFLAGS. TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/308003010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274123 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274117 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274115 0039d316-1c4b-4281-b951-d872f2087c98
-
epoger@google.com authored
control (whitespace CL) is at https://codereview.chromium.org/305183005 BUG=skia:2610 NOTRY=True Review URL: https://codereview.chromium.org/309503006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274114 0039d316-1c4b-4281-b951-d872f2087c98
-
jbauman@chromium.org authored
When this flag is given, the new surfaces system will be used to display the browser contents. BUG= Review URL: https://codereview.chromium.org/307693005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274113 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@chromium.org authored
BUG=377408 R=jar@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/303253003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274112 0039d316-1c4b-4281-b951-d872f2087c98
-
yzshen@chromium.org authored
With this CL, the encoded handles will comply with the restriction that "If handle X is prior to handle Y in the depth-first traversal order and both of them are valid, then the value of X should be smaller than that of Y." BUG=None TEST=None Review URL: https://codereview.chromium.org/303163006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274111 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
With this the ui/gl target compiles on mac and fails to link with some skia thingy. R=brettw@chromium.org TBR=ben@chromium.org Review URL: https://codereview.chromium.org/303273009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274110 0039d316-1c4b-4281-b951-d872f2087c98
-
sque@chromium.org authored
These need to balance out the calls to LoginState::Initialize(). BUG=chromium:379140 TEST=unit tests pass Signed-off-by:
Simon Que <sque@chromium.org> Review URL: https://codereview.chromium.org/310493002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274109 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
This hasn't been used since we removed the old SRPC-based PPAPI proxy. BUG=none TEST=trybots Review URL: https://codereview.chromium.org/310473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274108 0039d316-1c4b-4281-b951-d872f2087c98
-