2013-05-03 06:53:54 +04:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROSER_BROWSER_OBSERVER_H_
|
|
|
|
#define ATOM_BROSER_BROWSER_OBSERVER_H_
|
|
|
|
|
2013-05-30 12:03:10 +04:00
|
|
|
#include <string>
|
|
|
|
|
2013-05-03 06:53:54 +04:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class BrowserObserver {
|
|
|
|
public:
|
|
|
|
// The browser has closed all windows and will quit.
|
|
|
|
virtual void OnWillQuit(bool* prevent_default) {}
|
|
|
|
|
|
|
|
// The browser has closed all windows. If the browser is quiting, then this
|
|
|
|
// method will not be called, instead it will call OnWillQuit.
|
|
|
|
virtual void OnWindowAllClosed() {}
|
|
|
|
|
2013-05-30 12:03:10 +04:00
|
|
|
// The browser has opened a file by double clicking in Finder or dragging the
|
|
|
|
// file to the Dock icon. (OS X only)
|
|
|
|
virtual void OnOpenFile(bool* prevent_default,
|
|
|
|
const std::string& file_path) {}
|
|
|
|
|
2013-07-10 12:10:38 +04:00
|
|
|
// Browser is used to open a url.
|
|
|
|
virtual void OnOpenURL(const std::string& url) {}
|
|
|
|
|
2013-05-30 15:12:14 +04:00
|
|
|
// The browser has finished loading.
|
2013-06-03 11:31:46 +04:00
|
|
|
virtual void OnWillFinishLaunching() {}
|
2013-05-30 15:12:14 +04:00
|
|
|
virtual void OnFinishLaunching() {}
|
|
|
|
|
2013-05-03 06:53:54 +04:00
|
|
|
protected:
|
|
|
|
virtual ~BrowserObserver() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROSER_BROWSER_OBSERVER_H_
|