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

Side by Side Diff: chrome/browser/automation/automation_browser_tracker.h

Issue 10553010: Rename IPC::Channel and IPC::Sender in src/chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/automation/automation_browser_tracker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_BROWSER_TRACKER_H__ 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_BROWSER_TRACKER_H__
6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_BROWSER_TRACKER_H__ 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_BROWSER_TRACKER_H__
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/automation/automation_resource_tracker.h" 9 #include "chrome/browser/automation/automation_resource_tracker.h"
10 10
11 class Browser; 11 class Browser;
12 12
13 // Tracks Browser objects. 13 // Tracks Browser objects.
14 class AutomationBrowserTracker : public AutomationResourceTracker<Browser*> { 14 class AutomationBrowserTracker : public AutomationResourceTracker<Browser*> {
15 public: 15 public:
16 explicit AutomationBrowserTracker(IPC::Message::Sender* automation); 16 explicit AutomationBrowserTracker(IPC::Sender* automation);
17 virtual ~AutomationBrowserTracker(); 17 virtual ~AutomationBrowserTracker();
18 virtual void AddObserver(Browser* resource); 18 virtual void AddObserver(Browser* resource);
19 virtual void RemoveObserver(Browser* resource); 19 virtual void RemoveObserver(Browser* resource);
20 }; 20 };
21 21
22 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_BROWSER_TRACKER_H__ 22 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_BROWSER_TRACKER_H__
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/automation/automation_browser_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698