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

Unified Diff: blimp/engine/browser/blimp_engine_session.h

Issue 1551583003: Implementation and fixes for Blimp client/engine E2E communication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dtrainor-linux-cl1528243002
Patch Set: Fixed misplaced EXPORT directive Created 4 years, 12 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/blimp_main.cc ('k') | blimp/engine/browser/blimp_engine_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/browser/blimp_engine_session.h
diff --git a/blimp/engine/browser/blimp_engine_session.h b/blimp/engine/browser/blimp_engine_session.h
index 65ebfc92955dac46401c98fec0809d850c67663d..e25d7df01dc7ba59ddf5090b13a3ada402700995 100644
--- a/blimp/engine/browser/blimp_engine_session.h
+++ b/blimp/engine/browser/blimp_engine_session.h
@@ -7,11 +7,14 @@
#include <stdint.h>
+#include <vector>
+
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "blimp/common/proto/blimp_message.pb.h"
#include "blimp/engine/browser/engine_render_widget_feature.h"
#include "blimp/net/blimp_message_processor.h"
+#include "blimp/net/connection_error_observer.h"
#include "content/public/browser/invalidate_type.h"
#include "content/public/browser/web_contents_delegate.h"
#include "content/public/browser/web_contents_observer.h"
@@ -54,10 +57,10 @@ namespace engine {
class BlimpBrowserContext;
class BlimpFocusClient;
-class BlimpNetworkComponents;
class BlimpScreen;
class BlimpUiContextFactory;
class BlimpWindowTreeHost;
+class EngineNetworkComponents;
class BlimpEngineSession
: public BlimpMessageProcessor,
@@ -158,7 +161,7 @@ class BlimpEngineSession
// Container for connection manager, authentication handler, and
// browser connection handler. The components run on the I/O thread, and
// this object is destroyed there.
- scoped_ptr<BlimpNetworkComponents> net_components_;
+ scoped_ptr<EngineNetworkComponents> net_components_;
// Handles all incoming and outgoing messages related to RenderWidget,
// including INPUT, COMPOSITOR and RENDER_WIDGET messages.
« no previous file with comments | « blimp/engine/app/blimp_main.cc ('k') | blimp/engine/browser/blimp_engine_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698