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

Side by Side Diff: content/renderer/renderer_webkitclient_impl.h

Issue 6930029: Make ViewHostMsg_Keygen a routed ipc (part 2/2). Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | « no previous file | content/renderer/renderer_webkitclient_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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/platform_file.h" 10 #include "base/platform_file.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 const WebKit::WebURL& url, bool is_local_storage); 50 const WebKit::WebURL& url, bool is_local_storage);
51 51
52 virtual WebKit::WebKitClient::FileHandle databaseOpenFile( 52 virtual WebKit::WebKitClient::FileHandle databaseOpenFile(
53 const WebKit::WebString& vfs_file_name, int desired_flags); 53 const WebKit::WebString& vfs_file_name, int desired_flags);
54 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, 54 virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name,
55 bool sync_dir); 55 bool sync_dir);
56 virtual long databaseGetFileAttributes( 56 virtual long databaseGetFileAttributes(
57 const WebKit::WebString& vfs_file_name); 57 const WebKit::WebString& vfs_file_name);
58 virtual long long databaseGetFileSize( 58 virtual long long databaseGetFileSize(
59 const WebKit::WebString& vfs_file_name); 59 const WebKit::WebString& vfs_file_name);
60 virtual WebKit::WebString signedPublicKeyAndChallengeString(
61 unsigned key_size_index,
62 const WebKit::WebString& challenge,
63 const WebKit::WebURL& url);
64 virtual WebKit::WebIDBFactory* idbFactory(); 60 virtual WebKit::WebIDBFactory* idbFactory();
65 virtual void createIDBKeysFromSerializedValuesAndKeyPath( 61 virtual void createIDBKeysFromSerializedValuesAndKeyPath(
66 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values, 62 const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values,
67 const WebKit::WebString& keyPath, 63 const WebKit::WebString& keyPath,
68 WebKit::WebVector<WebKit::WebIDBKey>& keys); 64 WebKit::WebVector<WebKit::WebIDBKey>& keys);
69 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue( 65 virtual WebKit::WebSerializedScriptValue injectIDBKeyIntoSerializedValue(
70 const WebKit::WebIDBKey& key, 66 const WebKit::WebIDBKey& key,
71 const WebKit::WebSerializedScriptValue& value, 67 const WebKit::WebSerializedScriptValue& value,
72 const WebKit::WebString& keyPath); 68 const WebKit::WebString& keyPath);
73 virtual WebKit::WebFileSystem* fileSystem(); 69 virtual WebKit::WebFileSystem* fileSystem();
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; 105 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_;
110 106
111 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; 107 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_;
112 108
113 scoped_ptr<WebFileSystemImpl> web_file_system_; 109 scoped_ptr<WebFileSystemImpl> web_file_system_;
114 110
115 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; 111 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
116 }; 112 };
117 113
118 #endif // CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ 114 #endif // CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/renderer_webkitclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698