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

Side by Side Diff: Source/web/InspectorFrontendClientImpl.h

Issue 104523002: [DevTools] Add power profiler and power overview in timeline panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 virtual void windowObjectCleared(); 54 virtual void windowObjectCleared();
55 55
56 virtual void inspectedURLChanged(const WTF::String&); 56 virtual void inspectedURLChanged(const WTF::String&);
57 57
58 virtual void sendMessageToBackend(const WTF::String&); 58 virtual void sendMessageToBackend(const WTF::String&);
59 59
60 virtual void sendMessageToEmbedder(const WTF::String&); 60 virtual void sendMessageToEmbedder(const WTF::String&);
61 61
62 virtual bool isUnderTest(); 62 virtual bool isUnderTest();
63 63
64 virtual void checkPowerProfileSupportedStatus();
65 virtual void startPowerProfile();
66 virtual void stopPowerProfile();
67 virtual void setPowerProfileResolution(unsigned);
68
64 private: 69 private:
65 WebCore::Page* m_frontendPage; 70 WebCore::Page* m_frontendPage;
66 WebDevToolsFrontendClient* m_client; 71 WebDevToolsFrontendClient* m_client;
67 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; 72 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost;
68 }; 73 };
69 74
70 } // namespace blink 75 } // namespace blink
71 76
72 #endif 77 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698