| OLD | NEW |
| 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 #ifndef CHROME_RENDERER_EXTENSIONS_TAB_FINDER_H_ | 5 #ifndef EXTENSIONS_RENDERER_TAB_FINDER_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_TAB_FINDER_H_ | 6 #define EXTENSIONS_RENDERER_TAB_FINDER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "content/public/renderer/render_view_visitor.h" | 10 #include "content/public/renderer/render_view_visitor.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 class RenderView; | 13 class RenderView; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace extensions { | 16 namespace extensions { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 29 bool Visit(content::RenderView* render_view) override; | 29 bool Visit(content::RenderView* render_view) override; |
| 30 | 30 |
| 31 int tab_id_; | 31 int tab_id_; |
| 32 content::RenderView* view_; | 32 content::RenderView* view_; |
| 33 | 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(TabFinder); | 34 DISALLOW_COPY_AND_ASSIGN(TabFinder); |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 } // namespace extensions | 37 } // namespace extensions |
| 38 | 38 |
| 39 #endif // CHROME_RENDERER_EXTENSIONS_TAB_FINDER_H_ | 39 #endif // EXTENSIONS_RENDERER_TAB_FINDER_H_ |
| OLD | NEW |