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

Side by Side Diff: chrome/browser/debugger/inspectable_tab_proxy.h

Issue 6366019: Part 1 of repairing regressions to my old clang check plugins so Nico can (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove Nico's changes that I patched in for testing. Created 9 years, 11 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 5 #ifndef CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 void Close(); 74 void Close();
75 75
76 // DevToolsClientHost interface 76 // DevToolsClientHost interface
77 virtual void InspectedTabClosing(); 77 virtual void InspectedTabClosing();
78 virtual void SendMessageToClient(const IPC::Message& msg); 78 virtual void SendMessageToClient(const IPC::Message& msg);
79 79
80 private: 80 private:
81 // Message handling routines 81 // Message handling routines
82 void OnDebuggerOutput(const std::string& msg); 82 void OnDebuggerOutput(const std::string& msg);
83 void FrameNavigating(const std::string& url); 83 virtual void FrameNavigating(const std::string& url);
Nico 2011/01/27 03:55:17 OVERRIDE? :-P (requires base/compiler_specific.h)
84 void TabClosed(); 84 void TabClosed();
85 85
86 int32 id_; 86 int32 id_;
87 DebuggerRemoteService* service_; 87 DebuggerRemoteService* service_;
88 InspectableTabProxy::IdToClientHostMap* map_; 88 InspectableTabProxy::IdToClientHostMap* map_;
89 }; 89 };
90 90
91 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ 91 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698