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

Side by Side Diff: chrome/browser/in_process_webkit/browser_webkitclient_impl.cc

Issue 387020: Upstreaming WebKit.gyp (Closed)
Patch Set: Created 11 years, 1 month 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 #include "chrome/browser/in_process_webkit/browser_webkitclient_impl.h" 5 #include "chrome/browser/in_process_webkit/browser_webkitclient_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h" 8 #include "chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h"
9 #include "webkit/api/public/WebData.h" 9 #include "third_party/WebKit/WebKit/chromium/public/WebData.h"
10 #include "webkit/api/public/WebString.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
11 #include "webkit/api/public/WebURL.h" 11 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h"
12 12
13 WebKit::WebClipboard* BrowserWebKitClientImpl::clipboard() { 13 WebKit::WebClipboard* BrowserWebKitClientImpl::clipboard() {
14 NOTREACHED(); 14 NOTREACHED();
15 return NULL; 15 return NULL;
16 } 16 }
17 17
18 WebKit::WebMimeRegistry* BrowserWebKitClientImpl::mimeRegistry() { 18 WebKit::WebMimeRegistry* BrowserWebKitClientImpl::mimeRegistry() {
19 NOTREACHED(); 19 NOTREACHED();
20 return NULL; 20 return NULL;
21 } 21 }
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 DOMStorageDispatcherHost::DispatchStorageEvent(key, old_value, new_value, 123 DOMStorageDispatcherHost::DispatchStorageEvent(key, old_value, new_value,
124 origin, url, is_local_storage); 124 origin, url, is_local_storage);
125 } 125 }
126 126
127 WebKit::WebSharedWorkerRepository* 127 WebKit::WebSharedWorkerRepository*
128 BrowserWebKitClientImpl::sharedWorkerRepository() { 128 BrowserWebKitClientImpl::sharedWorkerRepository() {
129 NOTREACHED(); 129 NOTREACHED();
130 return NULL; 130 return NULL;
131 } 131 }
OLDNEW
« no previous file with comments | « chrome/browser/gtk/tab_contents_drag_source.h ('k') | chrome/browser/in_process_webkit/storage_area.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698