OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010, 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2010, 2011, 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 // Do not use this method. It's been replaced by createExternalPopupMenu. | 116 // Do not use this method. It's been replaced by createExternalPopupMenu. |
117 ASSERT_NOT_REACHED(); | 117 ASSERT_NOT_REACHED(); |
118 return 0; | 118 return 0; |
119 } | 119 } |
120 | 120 |
121 WebStorageNamespace* WebViewHost::createSessionStorageNamespace(unsigned quota) | 121 WebStorageNamespace* WebViewHost::createSessionStorageNamespace(unsigned quota) |
122 { | 122 { |
123 return webkit_support::CreateSessionStorageNamespace(quota); | 123 return webkit_support::CreateSessionStorageNamespace(quota); |
124 } | 124 } |
125 | 125 |
| 126 WebKit::WebColorChooser* WebViewHost::createColorChooser(WebKit::WebColorChooser
Client* client, const WebKit::WebColor&) |
| 127 { |
| 128 return proxy()->createColorChooser(client); |
| 129 } |
| 130 |
126 void WebViewHost::didAddMessageToConsole(const WebConsoleMessage& message, const
WebString& sourceName, unsigned sourceLine) | 131 void WebViewHost::didAddMessageToConsole(const WebConsoleMessage& message, const
WebString& sourceName, unsigned sourceLine) |
127 { | 132 { |
128 } | 133 } |
129 | 134 |
130 void WebViewHost::didStartLoading() | 135 void WebViewHost::didStartLoading() |
131 { | 136 { |
132 } | 137 } |
133 | 138 |
134 void WebViewHost::didStopLoading() | 139 void WebViewHost::didStopLoading() |
135 { | 140 { |
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
999 webView()->willExitFullScreen(); | 1004 webView()->willExitFullScreen(); |
1000 webView()->didExitFullScreen(); | 1005 webView()->didExitFullScreen(); |
1001 } | 1006 } |
1002 | 1007 |
1003 webkit_support::TestMediaStreamClient* WebViewHost::testMediaStreamClient() | 1008 webkit_support::TestMediaStreamClient* WebViewHost::testMediaStreamClient() |
1004 { | 1009 { |
1005 if (!m_testMediaStreamClient.get()) | 1010 if (!m_testMediaStreamClient.get()) |
1006 m_testMediaStreamClient = adoptPtr(new webkit_support::TestMediaStreamCl
ient()); | 1011 m_testMediaStreamClient = adoptPtr(new webkit_support::TestMediaStreamCl
ient()); |
1007 return m_testMediaStreamClient.get(); | 1012 return m_testMediaStreamClient.get(); |
1008 } | 1013 } |
OLD | NEW |