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

Side by Side Diff: chrome/browser/policy/cloud_policy_subsystem.cc

Issue 9005015: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/policy/cloud_policy_subsystem.h" 5 #include "chrome/browser/policy/cloud_policy_subsystem.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 device_token_fetcher_.get(), 198 device_token_fetcher_.get(),
199 data_store_, 199 data_store_,
200 notifier_.get())); 200 notifier_.get()));
201 } 201 }
202 202
203 CloudPolicyCacheBase* CloudPolicySubsystem::GetCloudPolicyCacheBase() const { 203 CloudPolicyCacheBase* CloudPolicySubsystem::GetCloudPolicyCacheBase() const {
204 return cloud_policy_cache_.get(); 204 return cloud_policy_cache_.get();
205 } 205 }
206 206
207 CloudPolicySubsystem::CloudPolicySubsystem() 207 CloudPolicySubsystem::CloudPolicySubsystem()
208 : refresh_pref_name_(NULL) {} 208 : refresh_pref_name_(NULL),
209 data_store_(NULL) {
210 }
209 211
210 } // namespace policy 212 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/history/in_memory_url_index.cc ('k') | chrome/browser/speech/speech_input_bubble_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698