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

Side by Side Diff: chrome/browser/profiles/profile_impl_io_data.h

Issue 7134017: Make safe browsing work in a multi-profile environment. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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
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 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/hash_tables.h" 10 #include "base/hash_tables.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; 122 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_;
123 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; 123 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_;
124 124
125 // One HttpTransactionFactory per isolated app. 125 // One HttpTransactionFactory per isolated app.
126 mutable HttpTransactionFactoryMap app_http_factory_map_; 126 mutable HttpTransactionFactoryMap app_http_factory_map_;
127 127
128 // Parameters needed for isolated apps. 128 // Parameters needed for isolated apps.
129 FilePath app_path_; 129 FilePath app_path_;
130 mutable bool clear_local_state_on_exit_; 130 mutable bool clear_local_state_on_exit_;
131 131
132 mutable bool safe_browsing_enabled_;
133
132 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); 134 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData);
133 }; 135 };
134 136
135 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 137 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698