ChromiumTabs.h 606 B

12345678910111213141516171819
  1. // ChromiumTabs
  2. // Describes the |CTBrowser| class which represents one set of tabs (a window).
  3. #import "CTBrowser.h"
  4. // Describes the |CTBrowserWindowController| class which represents a window with
  5. // tabs. It also manages one |CTBrowser| instance (owns the reference).
  6. #import "CTBrowserWindowController.h"
  7. // Describes the |CTTabContents| class which represents the contents of a tab,
  8. // including icon, title and state (loading, crashed, etc).
  9. #import "CTTabContents.h"
  10. // Toolbar view and view controller
  11. #import "CTToolbarView.h"
  12. #import "CTToolbarController.h"
  13. // Utilities
  14. #import "CTUtil.h"