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

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

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh Created 7 years, 8 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 // Interface for objects providing content setting rules. 5 // Interface for objects providing content setting rules.
6 6
7 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ 7 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_
8 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ 8 #define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_
9 9
10 #define NO_RESOURCE_IDENTIFIER "" 10 #define NO_RESOURCE_IDENTIFIER std::string()
11 11
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/values.h" 15 #include "base/values.h"
16 #include "chrome/common/content_settings_types.h" 16 #include "chrome/common/content_settings_types.h"
17 17
18 class ContentSettingsPattern; 18 class ContentSettingsPattern;
19 19
20 namespace content_settings { 20 namespace content_settings {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 // Detaches the Provider from all Profile-related objects like PrefService. 67 // Detaches the Provider from all Profile-related objects like PrefService.
68 // This methods needs to be called before destroying the Profile. 68 // This methods needs to be called before destroying the Profile.
69 // Afterwards, none of the methods above that should only be called on the UI 69 // Afterwards, none of the methods above that should only be called on the UI
70 // thread should be called anymore. 70 // thread should be called anymore.
71 virtual void ShutdownOnUIThread() = 0; 71 virtual void ShutdownOnUIThread() = 0;
72 }; 72 };
73 73
74 } // namespace content_settings 74 } // namespace content_settings
75 75
76 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_ 76 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698