[M120][Tizen][Onscreen] Fix build errors for TV profile
[platform/framework/web/chromium-efl.git] / chrome / browser / browser_process_platform_part_win.h
1 // Copyright 2017 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_WIN_H_
6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_WIN_H_
7
8 #include "chrome/browser/browser_process_platform_part_base.h"
9 #include "chrome/browser/google/did_run_updater_win.h"
10 #include "third_party/abseil-cpp/absl/types/optional.h"
11
12 class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {
13  public:
14   BrowserProcessPlatformPart();
15   BrowserProcessPlatformPart(const BrowserProcessPlatformPart&) = delete;
16   BrowserProcessPlatformPart& operator=(const BrowserProcessPlatformPart&) =
17       delete;
18   ~BrowserProcessPlatformPart() override;
19
20   // BrowserProcessPlatformPartBase:
21   void OnBrowserLaunch() override;
22
23  private:
24   absl::optional<DidRunUpdater> did_run_updater_;
25 };
26
27 #endif  // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_WIN_H_