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

Unified Diff: blimp/engine/app/blimp_browser_main_parts.h

Issue 2629743003: Remove all blimp engine code (Closed)
Patch Set: Use consistent comment style in //chrome Created 3 years, 11 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
« no previous file with comments | « blimp/engine/app/OWNERS ('k') | blimp/engine/app/blimp_browser_main_parts.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/app/blimp_browser_main_parts.h
diff --git a/blimp/engine/app/blimp_browser_main_parts.h b/blimp/engine/app/blimp_browser_main_parts.h
deleted file mode 100644
index 0fdbe8a68f90f0fb80eaf33f82c4753766a759d2..0000000000000000000000000000000000000000
--- a/blimp/engine/app/blimp_browser_main_parts.h
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright 2015 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 BLIMP_ENGINE_APP_BLIMP_BROWSER_MAIN_PARTS_H_
-#define BLIMP_ENGINE_APP_BLIMP_BROWSER_MAIN_PARTS_H_
-
-#include <memory>
-
-#include "base/macros.h"
-#include "blimp/engine/mojo/blob_channel_service.h"
-#include "content/public/browser/browser_main_parts.h"
-#include "content/public/common/main_function_params.h"
-
-namespace net {
-class NetLog;
-}
-
-namespace content {
-struct MainFunctionParams;
-}
-
-namespace blimp {
-
-class BlobChannelSender;
-
-namespace engine {
-
-class BlimpBrowserContext;
-class BlimpEngineConfig;
-class BlimpEngineSession;
-class SettingsManager;
-
-class BlimpBrowserMainParts : public content::BrowserMainParts {
- public:
- explicit BlimpBrowserMainParts(const content::MainFunctionParams& parameters);
- ~BlimpBrowserMainParts() override;
-
- // content::BrowserMainParts implementation.
- void PreEarlyInitialization() override;
- void PreMainMessageLoopRun() override;
- void PostMainMessageLoopRun() override;
-
- BlimpBrowserContext* GetBrowserContext();
- SettingsManager* GetSettingsManager();
- BlobChannelSender* GetBlobChannelSender();
- BlobChannelService* GetBlobChannelService();
- BlimpEngineSession* GetBlimpEngineSession();
-
- private:
- std::unique_ptr<BlimpEngineConfig> engine_config_;
- std::unique_ptr<net::NetLog> net_log_;
- std::unique_ptr<SettingsManager> settings_manager_;
- std::unique_ptr<BlimpEngineSession> engine_session_;
-
- DISALLOW_COPY_AND_ASSIGN(BlimpBrowserMainParts);
-};
-
-} // namespace engine
-} // namespace blimp
-
-#endif // BLIMP_ENGINE_APP_BLIMP_BROWSER_MAIN_PARTS_H_
« no previous file with comments | « blimp/engine/app/OWNERS ('k') | blimp/engine/app/blimp_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698