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

Side by Side Diff: content/browser/devtools/protocol/security_handler.h

Issue 1165293005: Add security handler stub for sending the lock icon status to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | content/browser/devtools/protocol/security_handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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 CONTENT_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_
6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_
7
8 #include "content/browser/devtools/devtools_protocol_handler.h"
9 #include "content/public/common/security_style.h"
10
11 namespace content {
12 namespace devtools {
13 namespace security {
14
15 class SecurityHandler {
16 public:
17 typedef DevToolsProtocolClient::Response Response;
18
19 SecurityHandler();
20 ~SecurityHandler();
21
22 void SetClient(scoped_ptr<Client> client);
estark 2015/06/09 05:07:48 Does this build? I thought the Client definition w
lgarron 2015/06/09 18:17:24 It does not build. Not sure how I ended up committ
23
24 Response Enable();
25 Response Disable();
26
27 private:
28
29 DISALLOW_COPY_AND_ASSIGN(SecurityHandler);
30 };
31
32 } // namespace security
33 } // namespace devtools
34 } // namespace content
35
36 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/protocol/security_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698