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

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

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_WINDOW_TRACKER_H_ 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_WINDOW_TRACKER_H_
6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_WINDOW_TRACKER_H_ 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_WINDOW_TRACKER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "chrome/browser/automation/automation_resource_tracker.h" 10 #include "chrome/browser/automation/automation_resource_tracker.h"
11 #include "gfx/native_widget_types.h" 11 #include "ui/gfx/native_widget_types.h"
12 12
13 class AutomationWindowTracker 13 class AutomationWindowTracker
14 : public AutomationResourceTracker<gfx::NativeWindow> { 14 : public AutomationResourceTracker<gfx::NativeWindow> {
15 public: 15 public:
16 explicit AutomationWindowTracker(IPC::Message::Sender* automation); 16 explicit AutomationWindowTracker(IPC::Message::Sender* automation);
17 virtual ~AutomationWindowTracker(); 17 virtual ~AutomationWindowTracker();
18 18
19 virtual void AddObserver(gfx::NativeWindow resource); 19 virtual void AddObserver(gfx::NativeWindow resource);
20 virtual void RemoveObserver(gfx::NativeWindow resource); 20 virtual void RemoveObserver(gfx::NativeWindow resource);
21 }; 21 };
22 22
23 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_WINDOW_TRACKER_H_ 23 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_WINDOW_TRACKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698