| OLD | NEW |
| 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 // Contains functions used by BrowserMain() that are gtk-specific. | 5 // Contains functions used by BrowserMain() that are gtk-specific. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_GTK_H_ | 7 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_GTK_H_ |
| 8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_GTK_H_ | 8 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_GTK_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/chrome_browser_main_posix.h" | 12 #include "chrome/browser/chrome_browser_main.h" |
| 13 #include "chrome/browser/chrome_browser_main_x11.h" | |
| 14 | 13 |
| 15 class ChromeBrowserMainPartsGtk : public ChromeBrowserMainPartsPosix { | 14 class ChromeBrowserPartsGtk : public ChromeBrowserMainParts::ExtraParts { |
| 16 public: | 15 public: |
| 17 explicit ChromeBrowserMainPartsGtk(const MainFunctionParams& parameters); | 16 explicit ChromeBrowserPartsGtk(ChromeBrowserMainParts* main_parts); |
| 18 | 17 |
| 19 virtual void PreEarlyInitialization() OVERRIDE; | 18 virtual void PreEarlyInitialization() OVERRIDE; |
| 20 | 19 |
| 20 static void ShowMessageBox(const char* message); |
| 21 |
| 21 private: | 22 private: |
| 22 void DetectRunningAsRoot(); | 23 void DetectRunningAsRoot(); |
| 23 }; | 24 }; |
| 24 | 25 |
| 25 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_GTK_H_ | 26 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_GTK_H_ |
| OLD | NEW |