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

Side by Side Diff: chrome/browser/prerender/prerender_resource_throttle.h

Issue 9433059: Coverity: Fix uninitialized member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/intents/cws_intents_registry.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_RESOURCE_THROTTLE_H_ 5 #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_RESOURCE_THROTTLE_H_
6 #define CHROME_BROWSER_PRERENDER_PRERENDER_RESOURCE_THROTTLE_H_ 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_RESOURCE_THROTTLE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 21 matching lines...) Expand all
32 32
33 private: 33 private:
34 virtual ~PrerenderResourceThrottle(); 34 virtual ~PrerenderResourceThrottle();
35 35
36 void ContinueRequest(bool proceed); 36 void ContinueRequest(bool proceed);
37 37
38 PrerenderTracker* prerender_tracker_; 38 PrerenderTracker* prerender_tracker_;
39 const net::URLRequest* request_; 39 const net::URLRequest* request_;
40 int child_id_; 40 int child_id_;
41 int route_id_; 41 int route_id_;
42 int request_id_;
43 42
44 DISALLOW_COPY_AND_ASSIGN(PrerenderResourceThrottle); 43 DISALLOW_COPY_AND_ASSIGN(PrerenderResourceThrottle);
45 }; 44 };
46 45
47 } // namespace prerender 46 } // namespace prerender
48 47
49 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_RESOURCE_THROTTLE_H_ 48 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_RESOURCE_THROTTLE_H_
OLDNEW
« no previous file with comments | « chrome/browser/intents/cws_intents_registry.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698