2006-12-14 22:00:46 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-12-14 22:00:46 +00:00
|
|
|
|
|
|
|
// This file defines the interface between Cocoa-specific Obj-C++ and generic C++,
|
|
|
|
// so it itself cannot have any Obj-C bits in it.
|
|
|
|
|
2009-03-09 21:27:48 +00:00
|
|
|
#ifndef MacApplicationDelegate_h_
|
|
|
|
#define MacApplicationDelegate_h_
|
2006-12-14 22:00:46 +00:00
|
|
|
|
2007-05-17 02:10:19 +00:00
|
|
|
void EnsureUseCocoaDockAPI(void);
|
2006-12-14 22:00:46 +00:00
|
|
|
void SetupMacApplicationDelegate(void);
|
2011-01-03 16:08:36 +00:00
|
|
|
void ProcessPendingGetURLAppleEvents(void);
|
2006-12-14 22:00:46 +00:00
|
|
|
|
|
|
|
#endif
|