// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ #define CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ // Interface class for Parts owned by ChromeBrowserMainParts. // The default implementation for all methods is empty. // Most of these map to content::BrowserMainParts methods. This interface is // separate to allow stages to be further subdivided for Chrome specific // initialization stages (e.g. browser process init, profile init). // While ChromeBrowserMainParts are platform-specific, // ChromeBrowserMainExtraParts are used to do further initialization for various // Chrome toolkits (e.g., GTK, VIEWS, ASH, AURA, etc.; see // ChromeContentBrowserClient::CreateBrowserMainParts()). class Profile; class ChromeBrowserMainExtraParts { … }; #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_