Use int64 time stamp when storing metadata to the HTTP cache.
[chromium-blink-merge.git] / extensions / renderer / test_extensions_renderer_client.h
blobf79c6a95e35195f4c120e4bd2ae4f5179818b101
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef EXTENSIONS_RENDERER_TEST_EXTENSIONS_RENDERER_CLIENT_H_
6 #define EXTENSIONS_RENDERER_TEST_EXTENSIONS_RENDERER_CLIENT_H_
8 #include "base/macros.h"
9 #include "extensions/renderer/extensions_renderer_client.h"
11 namespace extensions {
13 class TestExtensionsRendererClient : public ExtensionsRendererClient {
14 public:
15 TestExtensionsRendererClient();
16 ~TestExtensionsRendererClient() override;
18 // ExtensionsRendererClient implementation.
19 bool IsIncognitoProcess() const override;
20 int GetLowestIsolatedWorldId() const override;
22 private:
23 DISALLOW_COPY_AND_ASSIGN(TestExtensionsRendererClient);
26 } // namespace extensions
28 #endif // EXTENSIONS_RENDERER_TEST_EXTENSIONS_RENDERER_CLIENT_H_