blob: 1f446757e7b95bc68b7d5718cfce5171008eb064 [file] [log] [blame]
// Copyright 2012 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 IOS_CHROME_APP_MAIN_CONTROLLER_H_
#define IOS_CHROME_APP_MAIN_CONTROLLER_H_
#import <UIKit/UIKit.h>
#import "ios/chrome/app/application_delegate/app_state.h"
#import "ios/chrome/app/application_delegate/browser_launcher.h"
#import "ios/chrome/app/application_delegate/startup_information.h"
#import "ios/chrome/browser/ui/commands/browsing_data_commands.h"
@class AppState;
@class MetricsMediator;
@protocol BrowsingDataCommands;
// The main controller of the application, owned by the MainWindow nib. Also
// serves as the delegate for the app. Owns all the various top-level
// UI controllers.
//
// By design, it has no public API of its own. Anything interacting with
// MainController should be doing so through a specific protocol.
@interface MainController : NSObject <BrowserLauncher,
StartupInformation,
BrowsingDataCommands,
AppStateObserver>
// The application window.
@property(nonatomic, strong) UIWindow* window;
// Contains information about the application state, for example whether the
// safe mode is activated.
@property(nonatomic, weak) AppState* appState;
// This metrics mediator is used to check and update the metrics accordingly to
// to the user preferences.
@property(nonatomic, weak) MetricsMediator* metricsMediator;
@end
#endif // IOS_CHROME_APP_MAIN_CONTROLLER_H_