summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-12 22:41:54 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-12 22:41:54 +0000
commit56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180 (patch)
treeaa11ad8a1871b967fe136aa5900d6de8023544ad /chrome/common
parent9f9f86ce20db46dfed79eff111eed7a2f3bff48d (diff)
downloadchromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.zip
chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.tar.gz
chromium_src-56d01f63dc6ddb958dd8ce1d0c711ed87c3f0180.tar.bz2
Remove unneeded uses of logging.h in header files.
Review URL: http://codereview.chromium.org/43148 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11590 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_plugin_util.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/common/chrome_plugin_util.h b/chrome/common/chrome_plugin_util.h
index b7d7b96..d587ef1 100644
--- a/chrome/common/chrome_plugin_util.h
+++ b/chrome/common/chrome_plugin_util.h
@@ -2,8 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_COMMON_CHROME_PLUGIN_UTIL_H__
-#define CHROME_COMMON_CHROME_PLUGIN_UTIL_H__
+#ifndef CHROME_COMMON_CHROME_PLUGIN_UTIL_H_
+#define CHROME_COMMON_CHROME_PLUGIN_UTIL_H_
+
+#include <string>
#include "base/basictypes.h"
#include "base/non_thread_safe.h"
@@ -51,7 +53,7 @@ class PluginHelper : public NotificationObserver, public NonThreadSafe {
protected:
scoped_refptr<ChromePluginLib> plugin_;
- DISALLOW_EVIL_CONSTRUCTORS(PluginHelper);
+ DISALLOW_COPY_AND_ASSIGN(PluginHelper);
};
// A class of utility functions for dealing with request responses.
@@ -80,4 +82,4 @@ CPError CPB_GetCommandLineArgumentsCommon(const char* url,
void* STDCALL CPB_Alloc(uint32 size);
void STDCALL CPB_Free(void* memory);
-#endif // CHROME_COMMON_CHROME_PLUGIN_UTIL_H__
+#endif // CHROME_COMMON_CHROME_PLUGIN_UTIL_H_