Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1744)

Side by Side Diff: chrome/browser/chrome_browser_main_extra_parts.h

Issue 8670001: Move chromeos specific code to ChromeBrowserMainPartsChromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_
6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 10
(...skipping 16 matching lines...) Expand all
27 // PreMainMessageLoopStart methods. 27 // PreMainMessageLoopStart methods.
28 virtual void PreMainMessageLoopStart(); 28 virtual void PreMainMessageLoopStart();
29 virtual void PostMainMessageLoopStart(); 29 virtual void PostMainMessageLoopStart();
30 30
31 // ToolkitInitialized methods. 31 // ToolkitInitialized methods.
32 virtual void ToolkitInitialized(); 32 virtual void ToolkitInitialized();
33 33
34 // MainMessageLoopRun methods. 34 // MainMessageLoopRun methods.
35 virtual void PostBrowserProcessInit(); 35 virtual void PostBrowserProcessInit();
36 virtual void PostProfileInitialized(); 36 virtual void PostProfileInitialized();
37 virtual void PreBrowserStart();
38 virtual void PostBrowserStart();
37 virtual void PreMainMessageLoopRun(); 39 virtual void PreMainMessageLoopRun();
38 virtual void PostMainMessageLoopRun(); 40 virtual void PostMainMessageLoopRun();
39 41
40 private: 42 private:
41 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraParts); 43 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraParts);
42 }; 44 };
43 45
44 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_ 46 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_EXTRA_PARTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698