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

Unified Diff: shell/application_manager/application_manager.cc

Issue 1123263004: Initialize POD members of ApplicationManager, and other drive-by's. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: nullptr Created 5 years, 7 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 | « no previous file | shell/switches.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/application_manager/application_manager.cc
diff --git a/shell/application_manager/application_manager.cc b/shell/application_manager/application_manager.cc
index abaa11a1d932c773be249e4d5468fc1ea29d5173..dd9b0be0d613c16acc22000030e8a40fce38ba92 100644
--- a/shell/application_manager/application_manager.cc
+++ b/shell/application_manager/application_manager.cc
@@ -19,7 +19,6 @@
#include "shell/application_manager/network_fetcher.h"
#include "shell/application_manager/query_util.h"
#include "shell/application_manager/shell_impl.h"
-#include "shell/switches.h"
using mojo::Application;
using mojo::ApplicationPtr;
@@ -97,7 +96,10 @@ bool ApplicationManager::TestAPI::HasFactoryForURL(const GURL& url) const {
}
ApplicationManager::ApplicationManager(Delegate* delegate)
- : delegate_(delegate), weak_ptr_factory_(this) {
+ : delegate_(delegate),
+ blocking_pool_(nullptr),
+ disable_cache_(false),
+ weak_ptr_factory_(this) {
}
ApplicationManager::~ApplicationManager() {
« no previous file with comments | « no previous file | shell/switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698