blob: e29c068b1b027a9086324b00963d2c6956850d72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_COCOA_TASK_HELPERS_H_
#define CHROME_BROWSER_UI_COCOA_TASK_HELPERS_H_
#pragma once
class Task;
namespace tracked_objects {
class Location;
} // namespace tracked_objects
namespace cocoa_utils {
// This can be used in place of BrowserThread::PostTask(BrowserThread::UI, ...).
// The purpose of this function is to be able to execute Task work alongside
// native work when a MessageLoop is blocked by a nested run loop. This function
// will run the Task in both NSEventTrackingRunLoopMode and NSDefaultRunLoopMode
// for the purpose of executing work while a menu is open. See
// http://crbug.com/48679 for the full rationale.
bool PostTaskInEventTrackingRunLoopMode(
const tracked_objects::Location& from_here,
Task* task);
} // namespace cocoa_utils
#endif // CHROME_BROWSER_UI_COCOA_TASK_HELPERS_H_
|