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

Unified Diff: chrome/browser/chrome_browser_main_gtk.h

Issue 8302016: Make GTK and Aura parts orthogonal to OS parts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chrome_browser_main_gtk.h
diff --git a/chrome/browser/chrome_browser_main_gtk.h b/chrome/browser/chrome_browser_main_gtk.h
index e55e4fe193888d48e8c287710de8e6b6d71c98de..832ee6cf1f5977881cf364647e5cfef9c7c00706 100644
--- a/chrome/browser/chrome_browser_main_gtk.h
+++ b/chrome/browser/chrome_browser_main_gtk.h
@@ -9,15 +9,16 @@
#pragma once
#include "base/compiler_specific.h"
-#include "chrome/browser/chrome_browser_main_posix.h"
-#include "chrome/browser/chrome_browser_main_x11.h"
+#include "chrome/browser/chrome_browser_main.h"
-class ChromeBrowserMainPartsGtk : public ChromeBrowserMainPartsPosix {
+class ChromeBrowserPartsGtk : public ChromeBrowserMainParts::ExtraParts {
public:
- explicit ChromeBrowserMainPartsGtk(const MainFunctionParams& parameters);
+ explicit ChromeBrowserPartsGtk(ChromeBrowserMainParts* main_parts);
virtual void PreEarlyInitialization() OVERRIDE;
+ static void ShowMessageBox(const char* message);
+
private:
void DetectRunningAsRoot();
};

Powered by Google App Engine
This is Rietveld 408576698