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

Side by Side Diff: extensions/test/test_content_browser_client.h

Issue 2697463002: Convert utility process extension Unpacker IPC to mojo (Closed)
Patch Set: Sync to ToT. Created 3 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2017 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.
4
5 #ifndef EXTENSIONS_TEST_TEST_CONTENT_BROWSER_CLIENT_H_
6 #define EXTENSIONS_TEST_TEST_CONTENT_BROWSER_CLIENT_H_
7
8 #include <memory>
9
10 #include "base/strings/string_piece.h"
11 #include "content/public/browser/content_browser_client.h"
12
13 namespace base {
14 class Value;
15 }
16
17 namespace extensions {
18
19 class TestContentBrowserClient : public content::ContentBrowserClient {
20 public:
21 TestContentBrowserClient();
22 ~TestContentBrowserClient() override;
23
24 // content::ContentBrowserClient:
25 std::unique_ptr<base::Value> GetServiceManifestOverlay(
26 base::StringPiece name) override;
27 };
28
29 } // namespace extensions
30
31 #endif // EXTENSIONS_TEST_TEST_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698