From 95cd81159a74fd59a2cf860b224f95e918449b92 Mon Sep 17 00:00:00 2001 From: ffxbld Date: Sat, 22 Dec 2012 03:17:19 -0800 Subject: [PATCH 1/2] No bug, Automated blocklist update from host bld-linux64-ec2-377 - a=blocklist-update --- browser/app/blocklist.xml | 50 +++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 28 deletions(-) diff --git a/browser/app/blocklist.xml b/browser/app/blocklist.xml index 429c5ae3fe9..65a8cd36caa 100644 --- a/browser/app/blocklist.xml +++ b/browser/app/blocklist.xml @@ -1,5 +1,5 @@ - + @@ -46,7 +46,7 @@ - + @@ -555,32 +555,16 @@ - - - - - + - - - - - + - - - - - + - - - - - + @@ -606,42 +590,42 @@ - + - + - + - + - + - + @@ -666,6 +650,16 @@ + + + + + + + + + + From 5feed9cb3707098b722904ee54c49ed607fb8484 Mon Sep 17 00:00:00 2001 From: Jason Duell Date: Sat, 22 Dec 2012 03:51:55 -0800 Subject: [PATCH 2/2] Bug 821160 - remove accidentally commited .orig/.rej files r=jduell DONTBUILD --- .../froyo/stagefright/DataSource.h.orig | 83 ------------------- .../froyo/stagefright/DataSource.h.rej | 24 ------ 2 files changed, 107 deletions(-) delete mode 100644 media/omx-plugin/include/froyo/stagefright/DataSource.h.orig delete mode 100644 media/omx-plugin/include/froyo/stagefright/DataSource.h.rej diff --git a/media/omx-plugin/include/froyo/stagefright/DataSource.h.orig b/media/omx-plugin/include/froyo/stagefright/DataSource.h.orig deleted file mode 100644 index 6f7dc38c3cc..00000000000 --- a/media/omx-plugin/include/froyo/stagefright/DataSource.h.orig +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Copyright (C) 2009 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef DATA_SOURCE_H_ - -#define DATA_SOURCE_H_ - -#include - -#include -#include -#include -#include -#include - -namespace android { - -class String8; - -class DataSource : public RefBase { -public: - enum Flags { - kWantsPrefetching = 1, - kStreamedFromLocalHost = 2, - }; - - static sp CreateFromURI( - const char *uri, - const KeyedVector *headers = NULL); - - DataSource() {} - - virtual status_t initCheck() const = 0; - - virtual ssize_t readAt(off_t offset, void *data, size_t size) = 0; - - // Convenience methods: - bool getUInt16(off_t offset, uint16_t *x); - - // May return ERROR_UNSUPPORTED. - virtual status_t getSize(off_t *size); - - virtual uint32_t flags() { - return 0; - } - - //////////////////////////////////////////////////////////////////////////// - - bool sniff(String8 *mimeType, float *confidence); - - typedef bool (*SnifferFunc)( - const sp &source, String8 *mimeType, float *confidence); - - static void RegisterSniffer(SnifferFunc func); - static void RegisterDefaultSniffers(); - -protected: - virtual ~DataSource() {} - -private: - static Mutex gSnifferMutex; - static List gSniffers; - - DataSource(const DataSource &); - DataSource &operator=(const DataSource &); -}; - -} // namespace android - -#endif // DATA_SOURCE_H_ diff --git a/media/omx-plugin/include/froyo/stagefright/DataSource.h.rej b/media/omx-plugin/include/froyo/stagefright/DataSource.h.rej deleted file mode 100644 index 7c00d2dbb10..00000000000 --- a/media/omx-plugin/include/froyo/stagefright/DataSource.h.rej +++ /dev/null @@ -1,24 +0,0 @@ ---- stagefright/DataSource.h -+++ stagefright/DataSource.h -@@ -26,12 +26,20 @@ - #include - #include - -+#if !defined(STAGEFRIGHT_EXPORT) -+#define STAGEFRIGHT_EXPORT -+#endif -+ -+#if !defined(MOZ_STAGEFRIGHT_OFF_T) -+#define MOZ_STAGEFRIGHT_OFF_T off64_t -+#endif -+ - namespace android { - - struct AMessage; - class String8; - --class DataSource : public RefBase { -+class STAGEFRIGHT_EXPORT DataSource : public RefBase { - public: - enum Flags { - kWantsPrefetching = 1,