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

Side by Side Diff: chrome/browser/content_settings/content_settings_base_provider.h

Issue 6625076: Removing references to off the record in comments and log messages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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_CONTENT_SETTINGS_CONTENT_SETTINGS_BASE_PROVIDER_H_ 5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_BASE_PROVIDER_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_BASE_PROVIDER_H_ 6 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_BASE_PROVIDER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 private: 115 private:
116 // Copies of the pref data, so that we can read it on threads other than the 116 // Copies of the pref data, so that we can read it on threads other than the
117 // UI thread. 117 // UI thread.
118 HostContentSettings host_content_settings_; 118 HostContentSettings host_content_settings_;
119 119
120 // Whether this settings map is for an OTR session. 120 // Whether this settings map is for an OTR session.
121 bool is_off_the_record_; 121 bool is_off_the_record_;
122 122
123 // Differences to the preference-stored host content settings for 123 // Differences to the preference-stored host content settings for
124 // off-the-record settings. 124 // incognito settings.
125 HostContentSettings off_the_record_settings_; 125 HostContentSettings off_the_record_settings_;
126 126
127 // Used around accesses to the content_settings_ object to guarantee 127 // Used around accesses to the content_settings_ object to guarantee
128 // thread safety. 128 // thread safety.
129 mutable base::Lock lock_; 129 mutable base::Lock lock_;
130 }; 130 };
131 131
132 } // namespace content_settings 132 } // namespace content_settings
133 133
134 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_BASE_PROVIDER_H_ 134 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_BASE_PROVIDER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/user_manager.h ('k') | chrome/browser/content_settings/content_settings_base_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698