| 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 CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_ | 5 #ifndef CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_ |
| 6 #define CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_ | 6 #define CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "content/port/browser/render_view_host_delegate_view.h" | 9 #include "content/port/browser/render_view_host_delegate_view.h" |
| 10 #include "content/port/browser/web_contents_view_port.h" | 10 #include "content/port/browser/web_contents_view_port.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 virtual bool GetAllowOverlappingViews() const OVERRIDE; | 53 virtual bool GetAllowOverlappingViews() const OVERRIDE; |
| 54 #endif | 54 #endif |
| 55 | 55 |
| 56 // WebContentsViewPort: | 56 // WebContentsViewPort: |
| 57 virtual void CreateView(const gfx::Size& initial_size, | 57 virtual void CreateView(const gfx::Size& initial_size, |
| 58 gfx::NativeView context) OVERRIDE; | 58 gfx::NativeView context) OVERRIDE; |
| 59 virtual RenderWidgetHostView* CreateViewForWidget( | 59 virtual RenderWidgetHostView* CreateViewForWidget( |
| 60 RenderWidgetHost* render_widget_host) OVERRIDE; | 60 RenderWidgetHost* render_widget_host) OVERRIDE; |
| 61 virtual RenderWidgetHostView* CreateViewForPopupWidget( | 61 virtual RenderWidgetHostView* CreateViewForPopupWidget( |
| 62 RenderWidgetHost* render_widget_host) OVERRIDE; | 62 RenderWidgetHost* render_widget_host) OVERRIDE; |
| 63 virtual void SetPageTitle(const string16& title) OVERRIDE; | 63 virtual void SetPageTitle(const base::string16& title) OVERRIDE; |
| 64 virtual void RenderViewCreated(RenderViewHost* host) OVERRIDE; | 64 virtual void RenderViewCreated(RenderViewHost* host) OVERRIDE; |
| 65 virtual void RenderViewSwappedIn(RenderViewHost* host) OVERRIDE; | 65 virtual void RenderViewSwappedIn(RenderViewHost* host) OVERRIDE; |
| 66 virtual void SetOverscrollControllerEnabled(bool enabled) OVERRIDE; | 66 virtual void SetOverscrollControllerEnabled(bool enabled) OVERRIDE; |
| 67 #if defined(OS_MACOSX) | 67 #if defined(OS_MACOSX) |
| 68 virtual bool IsEventTracking() const OVERRIDE; | 68 virtual bool IsEventTracking() const OVERRIDE; |
| 69 virtual void CloseTabAfterEventTracking() OVERRIDE; | 69 virtual void CloseTabAfterEventTracking() OVERRIDE; |
| 70 #endif | 70 #endif |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 DISALLOW_COPY_AND_ASSIGN(TestWebContentsView); | 73 DISALLOW_COPY_AND_ASSIGN(TestWebContentsView); |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace content | 76 } // namespace content |
| 77 | 77 |
| 78 #endif // CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_ | 78 #endif // CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_ |
| OLD | NEW |