Merge remote repo native into ext/native/.

This commit is contained in:
Unknown W. Brackets
2015-09-06 12:24:17 -07:00
378 changed files with 190761 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "thread/executor.h"
#include "base/functional.h"
namespace threading {
void SameThreadExecutor::Run(std::function<void()> func) {
func();
}
} // namespace threading