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

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

Issue 1547793004: Make gpu black list work again on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove changes from gpu_info_collector files Created 4 years, 10 months 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
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 // Interface class for Parts owned by ChromeBrowserMainParts. 8 // Interface class for Parts owned by ChromeBrowserMainParts.
9 // The default implementation for all methods is empty. 9 // The default implementation for all methods is empty.
10 10
(...skipping 15 matching lines...) Expand all
26 virtual void PostEarlyInitialization() {} 26 virtual void PostEarlyInitialization() {}
27 27
28 // ToolkitInitialized methods. 28 // ToolkitInitialized methods.
29 virtual void ToolkitInitialized() {} 29 virtual void ToolkitInitialized() {}
30 30
31 // MainMessageLoopStart methods. 31 // MainMessageLoopStart methods.
32 virtual void PreMainMessageLoopStart() {} 32 virtual void PreMainMessageLoopStart() {}
33 virtual void PostMainMessageLoopStart() {} 33 virtual void PostMainMessageLoopStart() {}
34 34
35 // MainMessageLoopRun methods. 35 // MainMessageLoopRun methods.
36 virtual void PreCreateThreads() {} 36 virtual void PreCreateThreadsBegin() {}
37 virtual void PreCreateThreadsEnd() {}
37 virtual void PreProfileInit() {} 38 virtual void PreProfileInit() {}
38 virtual void PostProfileInit() {} 39 virtual void PostProfileInit() {}
39 virtual void PreBrowserStart() {} 40 virtual void PreBrowserStart() {}
40 virtual void PostBrowserStart() {} 41 virtual void PostBrowserStart() {}
41 virtual void PreMainMessageLoopRun() {} 42 virtual void PreMainMessageLoopRun() {}
42 virtual void PostMainMessageLoopRun() {} 43 virtual void PostMainMessageLoopRun() {}
43 }; 44 };
44 45
45 #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