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

Side by Side Diff: chrome/browser/chromeos/notifications/balloon_view_host.cc

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 years, 5 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 #include "chrome/browser/chromeos/notifications/balloon_view_host.h" 5 #include "chrome/browser/chromeos/notifications/balloon_view_host.h"
6 6
7 #include "base/stl_util-inl.h" 7 #include "base/stl_util.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chrome/common/extensions/extension_messages.h" 9 #include "chrome/common/extensions/extension_messages.h"
10 #include "content/common/view_messages.h" 10 #include "content/common/view_messages.h"
11 #include "ipc/ipc_message.h" 11 #include "ipc/ipc_message.h"
12 #include "ipc/ipc_message_macros.h" 12 #include "ipc/ipc_message_macros.h"
13 13
14 namespace chromeos { 14 namespace chromeos {
15 15
16 BalloonViewHost::BalloonViewHost(Balloon* balloon) 16 BalloonViewHost::BalloonViewHost(Balloon* balloon)
17 : ::BalloonViewHost(balloon) { 17 : ::BalloonViewHost(balloon) {
(...skipping 30 matching lines...) Expand all
48 MessageCallbackMap::const_iterator callback = 48 MessageCallbackMap::const_iterator callback =
49 message_callbacks_.find(name); 49 message_callbacks_.find(name);
50 if (callback == message_callbacks_.end()) 50 if (callback == message_callbacks_.end())
51 return; 51 return;
52 52
53 // Run callback. 53 // Run callback.
54 callback->second->Run(&args); 54 callback->second->Run(&args);
55 } 55 }
56 56
57 } // namespace chromeos 57 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698