Index: chrome/browser/ui/views/chrome_browser_main_extra_parts_views_linux.h |
diff --git a/chrome/browser/ui/views/chrome_browser_main_extra_parts_views_linux.h b/chrome/browser/ui/views/chrome_browser_main_extra_parts_views_linux.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..422a59aebbbc17a50c3a3d19395a43057fa0356b |
--- /dev/null |
+++ b/chrome/browser/ui/views/chrome_browser_main_extra_parts_views_linux.h |
@@ -0,0 +1,30 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_LINUX_H_ |
+#define CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_LINUX_H_ |
+ |
+#include "base/compiler_specific.h" |
+#include "base/macros.h" |
+#include "base/memory/scoped_ptr.h" |
+#include "build/build_config.h" |
+#include "chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h" |
+ |
+class ChromeBrowserMainExtraPartsViewsLinux |
+ : public ChromeBrowserMainExtraPartsViews { |
+ public: |
+ ChromeBrowserMainExtraPartsViewsLinux(); |
+ ~ChromeBrowserMainExtraPartsViewsLinux() override; |
+ |
+ // Overridden from ChromeBrowserMainExtraParts: |
+ void PreEarlyInitialization() override; |
+ void ToolkitInitialized() override; |
+ void PreCreateThreads() override; |
+ void PreProfileInit() override; |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsViewsLinux); |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_LINUX_H_ |