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

Side by Side Diff: content/test/test_web_contents_view.cc

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « content/test/test_web_contents_view.h ('k') | content/test/weburl_loader_mock_factory.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) 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 #include "content/test/test_web_contents_view.h" 5 #include "content/test/test_web_contents_view.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 TestWebContentsView::TestWebContentsView() { 9 TestWebContentsView::TestWebContentsView() {
10 } 10 }
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 RenderWidgetHostView* TestWebContentsView::CreateViewForWidget( 96 RenderWidgetHostView* TestWebContentsView::CreateViewForWidget(
97 RenderWidgetHost* render_widget_host) { 97 RenderWidgetHost* render_widget_host) {
98 return NULL; 98 return NULL;
99 } 99 }
100 100
101 RenderWidgetHostView* TestWebContentsView::CreateViewForPopupWidget( 101 RenderWidgetHostView* TestWebContentsView::CreateViewForPopupWidget(
102 RenderWidgetHost* render_widget_host) { 102 RenderWidgetHost* render_widget_host) {
103 return NULL; 103 return NULL;
104 } 104 }
105 105
106 void TestWebContentsView::SetPageTitle(const string16& title) { 106 void TestWebContentsView::SetPageTitle(const base::string16& title) {
107 } 107 }
108 108
109 void TestWebContentsView::RenderViewCreated(RenderViewHost* host) { 109 void TestWebContentsView::RenderViewCreated(RenderViewHost* host) {
110 } 110 }
111 111
112 void TestWebContentsView::RenderViewSwappedIn(RenderViewHost* host) { 112 void TestWebContentsView::RenderViewSwappedIn(RenderViewHost* host) {
113 } 113 }
114 114
115 void TestWebContentsView::SetOverscrollControllerEnabled(bool enabled) { 115 void TestWebContentsView::SetOverscrollControllerEnabled(bool enabled) {
116 } 116 }
117 117
118 #if defined(OS_MACOSX) 118 #if defined(OS_MACOSX)
119 bool TestWebContentsView::IsEventTracking() const { 119 bool TestWebContentsView::IsEventTracking() const {
120 return false; 120 return false;
121 } 121 }
122 122
123 void TestWebContentsView::CloseTabAfterEventTracking() { 123 void TestWebContentsView::CloseTabAfterEventTracking() {
124 } 124 }
125 #endif 125 #endif
126 126
127 } // namespace content 127 } // namespace content
OLDNEW
« no previous file with comments | « content/test/test_web_contents_view.h ('k') | content/test/weburl_loader_mock_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698