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

Side by Side Diff: webkit/tools/test_shell/test_webview_delegate_gtk.cc

Issue 259047: Move classes depending on Skia out of base/gfx and into app/gfx. Rename... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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) 2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008 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 // This file was forked off the Mac port. 5 // This file was forked off the Mac port.
6 6
7 #include "webkit/tools/test_shell/test_webview_delegate.h" 7 #include "webkit/tools/test_shell/test_webview_delegate.h"
8 8
9 #include <gtk/gtk.h> 9 #include <gtk/gtk.h>
10 #include <gdk/gdkx.h> 10 #include <gdk/gdkx.h>
11 11
12 #include "base/gfx/gtk_util.h" 12 #include "app/gfx/gtk_util.h"
13 #include "base/gfx/point.h" 13 #include "base/gfx/point.h"
14 #include "base/message_loop.h" 14 #include "base/message_loop.h"
15 #include "base/string_util.h" 15 #include "base/string_util.h"
16 #include "net/base/net_errors.h" 16 #include "net/base/net_errors.h"
17 #include "chrome/common/page_transition_types.h" 17 #include "chrome/common/page_transition_types.h"
18 #include "webkit/api/public/WebCString.h" 18 #include "webkit/api/public/WebCString.h"
19 #include "webkit/api/public/WebCursorInfo.h" 19 #include "webkit/api/public/WebCursorInfo.h"
20 #include "webkit/api/public/WebFrame.h" 20 #include "webkit/api/public/WebFrame.h"
21 #include "webkit/api/public/WebRect.h" 21 #include "webkit/api/public/WebRect.h"
22 #include "webkit/api/public/WebString.h" 22 #include "webkit/api/public/WebString.h"
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 } 273 }
274 274
275 void TestWebViewDelegate::SetPageTitle(const std::wstring& title) { 275 void TestWebViewDelegate::SetPageTitle(const std::wstring& title) {
276 gtk_window_set_title(GTK_WINDOW(shell_->mainWnd()), 276 gtk_window_set_title(GTK_WINDOW(shell_->mainWnd()),
277 ("Test Shell - " + WideToUTF8(title)).c_str()); 277 ("Test Shell - " + WideToUTF8(title)).c_str());
278 } 278 }
279 279
280 void TestWebViewDelegate::SetAddressBarURL(const GURL& url) { 280 void TestWebViewDelegate::SetAddressBarURL(const GURL& url) {
281 gtk_entry_set_text(GTK_ENTRY(shell_->editWnd()), url.spec().c_str()); 281 gtk_entry_set_text(GTK_ENTRY(shell_->editWnd()), url.spec().c_str());
282 } 282 }
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_platform_delegate_win.cc ('k') | webkit/tools/test_shell/test_webview_delegate_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698