summaryrefslogtreecommitdiffstats
path: root/content/shell/shell_win.cc
diff options
context:
space:
mode:
authorerg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-19 03:18:50 +0000
committererg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-19 03:18:50 +0000
commit15aea41a83a90ab5a5711979c664d5c97f0d1945 (patch)
tree37cf6bf22d8d541ffa5d6842d77ab70252c6334e /content/shell/shell_win.cc
parenta495b97dc886764be083976ca94e51116ed0b34e (diff)
downloadchromium_src-15aea41a83a90ab5a5711979c664d5c97f0d1945.zip
chromium_src-15aea41a83a90ab5a5711979c664d5c97f0d1945.tar.gz
chromium_src-15aea41a83a90ab5a5711979c664d5c97f0d1945.tar.bz2
content shell/GTK: Add user interface niceness.
- We handle multiple popup windows properly, only shutting down when the last window is closed. - We have a throbber that spins while loading. - Typing 'http://' is optional - Ctrl+w, Ctrl+l, Ctrl+r, Alt+back, and Alt+forward are hooked up as keyboard accelerators. BUG=90445 Review URL: http://codereview.chromium.org/9251024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118226 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/shell_win.cc')
-rw-r--r--content/shell/shell_win.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/content/shell/shell_win.cc b/content/shell/shell_win.cc
index e274b66..6c74de7 100644
--- a/content/shell/shell_win.cc
+++ b/content/shell/shell_win.cc
@@ -95,6 +95,9 @@ void Shell::PlatformSetAddressBarURL(const GURL& url) {
reinterpret_cast<LPARAM>(url_string.c_str()));
}
+void Shell::PlatformSetIsLoading(bool loading) {
+}
+
void Shell::PlatformCreateWindow(int width, int height) {
window_ = CreateWindow(kWindowClass, kWindowTitle,
WS_OVERLAPPEDWINDOW | WS_CLIPCHILDREN,