| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_PRINTING_PRINTING_UI_WEB_CONTENTS_OBSERVER_H_ | |
| 6 #define CHROME_BROWSER_PRINTING_PRINTING_UI_WEB_CONTENTS_OBSERVER_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "content/public/browser/web_contents_observer.h" | |
| 10 #include "ui/gfx/native_widget_types.h" | |
| 11 | |
| 12 namespace printing { | |
| 13 | |
| 14 // Wrapper used to keep track of the lifetime of a WebContents. | |
| 15 // Lives on the UI thread. | |
| 16 class PrintingUIWebContentsObserver : public content::WebContentsObserver { | |
| 17 public: | |
| 18 explicit PrintingUIWebContentsObserver(content::WebContents* web_contents); | |
| 19 virtual ~PrintingUIWebContentsObserver(); | |
| 20 | |
| 21 // Return the parent NativeView of the observed WebContents. | |
| 22 gfx::NativeView GetParentView(); | |
| 23 | |
| 24 private: | |
| 25 DISALLOW_COPY_AND_ASSIGN(PrintingUIWebContentsObserver); | |
| 26 }; | |
| 27 | |
| 28 } // namespace printing | |
| 29 | |
| 30 #endif // CHROME_BROWSER_PRINTING_PRINTING_UI_WEB_CONTENTS_OBSERVER_H_ | |
| OLD | NEW |