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

Side by Side Diff: webkit/glue/chrome_client_impl.h

Issue 149575: Roll WebKit DEPS from 45738 to 45840. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « webkit/api/public/WebWorkerClient.h ('k') | webkit/glue/chrome_client_impl.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-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 #ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ 5 #ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ 6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 9
10 MSVC_PUSH_WARNING_LEVEL(0); 10 MSVC_PUSH_WARNING_LEVEL(0);
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 virtual void setScrollbarsVisible(bool); 64 virtual void setScrollbarsVisible(bool);
65 virtual bool scrollbarsVisible(); 65 virtual bool scrollbarsVisible();
66 66
67 virtual void setMenubarVisible(bool); 67 virtual void setMenubarVisible(bool);
68 virtual bool menubarVisible(); 68 virtual bool menubarVisible();
69 69
70 virtual void setResizable(bool); 70 virtual void setResizable(bool);
71 71
72 virtual void addMessageToConsole(WebCore::MessageSource source, 72 virtual void addMessageToConsole(WebCore::MessageSource source,
73 WebCore::MessageType type,
73 WebCore::MessageLevel level, 74 WebCore::MessageLevel level,
74 const WebCore::String& message, 75 const WebCore::String& message,
75 unsigned int lineNumber, 76 unsigned int lineNumber,
76 const WebCore::String& sourceID); 77 const WebCore::String& sourceID);
77 78
78 virtual bool canRunBeforeUnloadConfirmPanel(); 79 virtual bool canRunBeforeUnloadConfirmPanel();
79 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message, 80 virtual bool runBeforeUnloadConfirmPanel(const WebCore::String& message,
80 WebCore::Frame* frame); 81 WebCore::Frame* frame);
81 82
82 virtual void closeWindowSoon(); 83 virtual void closeWindowSoon();
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 bool toolbars_visible_; 148 bool toolbars_visible_;
148 bool statusbar_visible_; 149 bool statusbar_visible_;
149 bool scrollbars_visible_; 150 bool scrollbars_visible_;
150 bool menubar_visible_; 151 bool menubar_visible_;
151 bool resizable_; 152 bool resizable_;
152 // Set to true if the next SetCursor is to be ignored. 153 // Set to true if the next SetCursor is to be ignored.
153 bool ignore_next_set_cursor_; 154 bool ignore_next_set_cursor_;
154 }; 155 };
155 156
156 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ 157 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/api/public/WebWorkerClient.h ('k') | webkit/glue/chrome_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698