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

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

Issue 15764004: DevTools: show extension name in console context switcher (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: correct rebaseline Created 6 years, 3 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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 virtual void dispatchUnloadEvent() OVERRIDE; 107 virtual void dispatchUnloadEvent() OVERRIDE;
108 virtual NPObject* windowObject() const OVERRIDE; 108 virtual NPObject* windowObject() const OVERRIDE;
109 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; 109 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE;
110 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE RRIDE; 110 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE RRIDE;
111 virtual void executeScript(const WebScriptSource&) OVERRIDE; 111 virtual void executeScript(const WebScriptSource&) OVERRIDE;
112 virtual void executeScriptInIsolatedWorld( 112 virtual void executeScriptInIsolatedWorld(
113 int worldID, const WebScriptSource* sources, unsigned numSources, 113 int worldID, const WebScriptSource* sources, unsigned numSources,
114 int extensionGroup) OVERRIDE; 114 int extensionGroup) OVERRIDE;
115 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr igin&) OVERRIDE; 115 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr igin&) OVERRIDE;
116 virtual void setIsolatedWorldContentSecurityPolicy(int worldID, const WebStr ing&) OVERRIDE; 116 virtual void setIsolatedWorldContentSecurityPolicy(int worldID, const WebStr ing&) OVERRIDE;
117 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString& ) OVERRIDE;
117 virtual void addMessageToConsole(const WebConsoleMessage&) OVERRIDE; 118 virtual void addMessageToConsole(const WebConsoleMessage&) OVERRIDE;
118 virtual void collectGarbage() OVERRIDE; 119 virtual void collectGarbage() OVERRIDE;
119 virtual bool checkIfRunInsecureContent(const WebURL&) const OVERRIDE; 120 virtual bool checkIfRunInsecureContent(const WebURL&) const OVERRIDE;
120 virtual v8::Handle<v8::Value> executeScriptAndReturnValue( 121 virtual v8::Handle<v8::Value> executeScriptAndReturnValue(
121 const WebScriptSource&) OVERRIDE; 122 const WebScriptSource&) OVERRIDE;
122 virtual void executeScriptInIsolatedWorld( 123 virtual void executeScriptInIsolatedWorld(
123 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, 124 int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
124 int extensionGroup, WebVector<v8::Local<v8::Value> >* results) OVERRIDE; 125 int extensionGroup, WebVector<v8::Local<v8::Value> >* results) OVERRIDE;
125 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled( 126 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled(
126 v8::Handle<v8::Function>, 127 v8::Handle<v8::Function>,
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 UserMediaClientImpl m_userMediaClientImpl; 356 UserMediaClientImpl m_userMediaClientImpl;
356 357
357 OwnPtrWillBePersistent<GeolocationClientProxy> m_geolocationClientProxy; 358 OwnPtrWillBePersistent<GeolocationClientProxy> m_geolocationClientProxy;
358 }; 359 };
359 360
360 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame()); 361 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame());
361 362
362 } // namespace blink 363 } // namespace blink
363 364
364 #endif 365 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698