summaryrefslogtreecommitdiffstats
path: root/chrome/browser/notifications
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-15 19:00:19 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-15 19:00:19 +0000
commit244924124002fb09afa5e6ccdb248f897848431b (patch)
treec2737631b52a3390bf33498eb58210749c12efb4 /chrome/browser/notifications
parent16b527168c7fcdc36588379c3c30225493265689 (diff)
downloadchromium_src-244924124002fb09afa5e6ccdb248f897848431b.zip
chromium_src-244924124002fb09afa5e6ccdb248f897848431b.tar.gz
chromium_src-244924124002fb09afa5e6ccdb248f897848431b.tar.bz2
FBTF: Remove "obviously" unneeded standard C++ library #includes.
BUG=none TEST=builds Review URL: http://codereview.chromium.org/3179017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56171 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r--chrome/browser/notifications/balloon.h4
-rw-r--r--chrome/browser/notifications/desktop_notification_service.h3
-rw-r--r--chrome/browser/notifications/notification_exceptions_table_model.h2
3 files changed, 4 insertions, 5 deletions
diff --git a/chrome/browser/notifications/balloon.h b/chrome/browser/notifications/balloon.h
index aac052e..225eca0 100644
--- a/chrome/browser/notifications/balloon.h
+++ b/chrome/browser/notifications/balloon.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -8,8 +8,6 @@
#define CHROME_BROWSER_NOTIFICATIONS_BALLOON_H_
#pragma once
-#include <vector>
-
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "gfx/point.h"
diff --git a/chrome/browser/notifications/desktop_notification_service.h b/chrome/browser/notifications/desktop_notification_service.h
index 77198b8..7a1bb0a 100644
--- a/chrome/browser/notifications/desktop_notification_service.h
+++ b/chrome/browser/notifications/desktop_notification_service.h
@@ -6,9 +6,10 @@
#define CHROME_BROWSER_NOTIFICATIONS_DESKTOP_NOTIFICATION_SERVICE_H_
#pragma once
-#include <set>
+#include <vector>
#include "base/basictypes.h"
+#include "base/string16.h"
#include "chrome/browser/notifications/notification.h"
#include "chrome/common/content_settings.h"
#include "chrome/common/notification_observer.h"
diff --git a/chrome/browser/notifications/notification_exceptions_table_model.h b/chrome/browser/notifications/notification_exceptions_table_model.h
index 71c850e..bef1fee 100644
--- a/chrome/browser/notifications/notification_exceptions_table_model.h
+++ b/chrome/browser/notifications/notification_exceptions_table_model.h
@@ -6,7 +6,7 @@
#define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_EXCEPTIONS_TABLE_MODEL_H_
#pragma once
-#include <set>
+#include <string>
#include <vector>
#include "chrome/browser/notifications/desktop_notification_service.h"