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

Side by Side Diff: chrome/browser/automation/automation_tab_tracker.cc

Issue 18640003: Updates some includes of chrome_notification_types.h (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/automation/automation_tab_tracker.h" 5 #include "chrome/browser/automation/automation_tab_tracker.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/common/chrome_notification_types.h" 8 #include "chrome/browser/chrome_notification_types.h"
9 #include "content/public/browser/navigation_controller.h" 9 #include "content/public/browser/navigation_controller.h"
10 #include "content/public/browser/notification_source.h" 10 #include "content/public/browser/notification_source.h"
11 11
12 using content::NavigationController; 12 using content::NavigationController;
13 13
14 AutomationTabTracker::AutomationTabTracker(IPC::Sender* automation) 14 AutomationTabTracker::AutomationTabTracker(IPC::Sender* automation)
15 : AutomationResourceTracker<NavigationController*>(automation) { 15 : AutomationResourceTracker<NavigationController*>(automation) {
16 } 16 }
17 17
18 AutomationTabTracker::~AutomationTabTracker() { 18 AutomationTabTracker::~AutomationTabTracker() {
(...skipping 22 matching lines...) Expand all
41 switch (type) { 41 switch (type) {
42 case chrome::NOTIFICATION_EXTERNAL_TAB_CLOSED: 42 case chrome::NOTIFICATION_EXTERNAL_TAB_CLOSED:
43 case chrome::NOTIFICATION_TAB_CLOSING: 43 case chrome::NOTIFICATION_TAB_CLOSING:
44 break; 44 break;
45 default: 45 default:
46 NOTREACHED(); 46 NOTREACHED();
47 } 47 }
48 AutomationResourceTracker<NavigationController*>::Observe( 48 AutomationResourceTracker<NavigationController*>::Observe(
49 type, source, details); 49 type, source, details);
50 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698