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

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

Issue 935983002: Remove obsolete code path that uses double as time stamp for metadata (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 10 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
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/renderer/renderer_blink_platform_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/id_map.h" 9 #include "base/id_map.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 virtual blink::WebThemeEngine* themeEngine(); 69 virtual blink::WebThemeEngine* themeEngine();
70 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer( 70 virtual blink::WebSpeechSynthesizer* createSpeechSynthesizer(
71 blink::WebSpeechSynthesizerClient* client); 71 blink::WebSpeechSynthesizerClient* client);
72 virtual bool sandboxEnabled(); 72 virtual bool sandboxEnabled();
73 virtual unsigned long long visitedLinkHash( 73 virtual unsigned long long visitedLinkHash(
74 const char* canonicalURL, size_t length); 74 const char* canonicalURL, size_t length);
75 virtual bool isLinkVisited(unsigned long long linkHash); 75 virtual bool isLinkVisited(unsigned long long linkHash);
76 virtual void createMessageChannel(blink::WebMessagePortChannel** channel1, 76 virtual void createMessageChannel(blink::WebMessagePortChannel** channel1,
77 blink::WebMessagePortChannel** channel2); 77 blink::WebMessagePortChannel** channel2);
78 virtual blink::WebPrescientNetworking* prescientNetworking(); 78 virtual blink::WebPrescientNetworking* prescientNetworking();
79 virtual void cacheMetadata(
80 const blink::WebURL&, double, const char*, size_t);
81 virtual void cacheMetadata(const blink::WebURL&, int64, const char*, size_t); 79 virtual void cacheMetadata(const blink::WebURL&, int64, const char*, size_t);
82 virtual blink::WebString defaultLocale(); 80 virtual blink::WebString defaultLocale();
83 virtual void suddenTerminationChanged(bool enabled); 81 virtual void suddenTerminationChanged(bool enabled);
84 virtual blink::WebStorageNamespace* createLocalStorageNamespace(); 82 virtual blink::WebStorageNamespace* createLocalStorageNamespace();
85 virtual blink::Platform::FileHandle databaseOpenFile( 83 virtual blink::Platform::FileHandle databaseOpenFile(
86 const blink::WebString& vfs_file_name, int desired_flags); 84 const blink::WebString& vfs_file_name, int desired_flags);
87 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, 85 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name,
88 bool sync_dir); 86 bool sync_dir);
89 virtual long databaseGetFileAttributes( 87 virtual long databaseGetFileAttributes(
90 const blink::WebString& vfs_file_name); 88 const blink::WebString& vfs_file_name);
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 device::VibrationManagerPtr vibration_manager_; 251 device::VibrationManagerPtr vibration_manager_;
254 252
255 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; 253 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_;
256 254
257 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 255 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
258 }; 256 };
259 257
260 } // namespace content 258 } // namespace content
261 259
262 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 260 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698