diff options
Diffstat (limited to 'chrome/common/extensions')
-rw-r--r-- | chrome/common/extensions/extension.h | 3 | ||||
-rw-r--r-- | chrome/common/extensions/extension_error_reporter.cc | 4 | ||||
-rw-r--r-- | chrome/common/extensions/extension_error_reporter.h | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h index e099a7e..a92191c 100644 --- a/chrome/common/extensions/extension.h +++ b/chrome/common/extensions/extension.h @@ -7,18 +7,15 @@ #include <string> #include <vector> -#include <map> #include "base/file_path.h" #include "base/scoped_ptr.h" -#include "base/string16.h" #include "base/values.h" #include "base/version.h" #include "chrome/common/extensions/user_script.h" #include "chrome/common/extensions/url_pattern.h" #include "chrome/common/page_action.h" #include "googleurl/src/gurl.h" -#include "third_party/skia/include/core/SkColor.h" // Represents a Chromium extension. class Extension { diff --git a/chrome/common/extensions/extension_error_reporter.cc b/chrome/common/extensions/extension_error_reporter.cc index efc0aa0..442ed79 100644 --- a/chrome/common/extensions/extension_error_reporter.cc +++ b/chrome/common/extensions/extension_error_reporter.cc @@ -4,9 +4,13 @@ #include "chrome/common/extensions/extension_error_reporter.h" +#include "build/build_config.h" + #if defined(OS_WIN) #include "app/win_util.h" #endif +#include "base/logging.h" +#include "base/message_loop.h" #include "base/string_util.h" // No AddRef required when using ExtensionErrorReporter with RunnableMethod. diff --git a/chrome/common/extensions/extension_error_reporter.h b/chrome/common/extensions/extension_error_reporter.h index 347f7d6..aa17205 100644 --- a/chrome/common/extensions/extension_error_reporter.h +++ b/chrome/common/extensions/extension_error_reporter.h @@ -8,7 +8,7 @@ #include <string> #include <vector> -#include "base/message_loop.h" +class MessageLoop; // Exposes an easy way for the various components of the extension system to // report errors. This is a singleton that lives on the UI thread, with the |